seyfert 3.1.3-dev-15217195551.0 → 3.1.3-dev-15621865613.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -83,7 +83,7 @@ export declare class RoleSelectMenu extends SelectMenu<APIRoleSelectComponent> {
|
|
|
83
83
|
}
|
|
84
84
|
export type MentionableDefaultElement = {
|
|
85
85
|
id: string;
|
|
86
|
-
type: keyof
|
|
86
|
+
type: keyof typeof SelectMenuDefaultValueType;
|
|
87
87
|
};
|
|
88
88
|
/**
|
|
89
89
|
* Represents a Select Menu for selecting mentionable entities.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ComponentType } from '../types';
|
|
2
2
|
import { BaseSelectMenuComponent } from './BaseSelectMenuComponent';
|
|
3
3
|
export declare class MentionableSelectMenuComponent extends BaseSelectMenuComponent<ComponentType.MentionableSelect> {
|
|
4
|
-
get defaultValues(): import("../types").APISelectMenuDefaultValue<import("../types").SelectMenuDefaultValueType
|
|
4
|
+
get defaultValues(): import("../types").APISelectMenuDefaultValue<import("../types").SelectMenuDefaultValueType>[] | undefined;
|
|
5
5
|
}
|
|
@@ -213,7 +213,7 @@ export type APIRoleSelectComponent = APIBaseAutoPopulatedSelectMenuComponent<Com
|
|
|
213
213
|
/**
|
|
214
214
|
* https://discord.com/developers/docs/interactions/message-components#select-menus
|
|
215
215
|
*/
|
|
216
|
-
export type APIMentionableSelectComponent = APIBaseAutoPopulatedSelectMenuComponent<ComponentType.MentionableSelect, SelectMenuDefaultValueType
|
|
216
|
+
export type APIMentionableSelectComponent = APIBaseAutoPopulatedSelectMenuComponent<ComponentType.MentionableSelect, SelectMenuDefaultValueType>;
|
|
217
217
|
/**
|
|
218
218
|
* https://discord.com/developers/docs/interactions/message-components#select-menus
|
|
219
219
|
*/
|