SelectMenu
type SelectMenu<T extends SelectComponentType> = {
type: T;
custom_id: string;
placeholder?: string;
min_values?: number;
max_values?: number;
disabled?: boolean;
options: StringSelectOption[];
channel_types?: ChannelTypes[];
};§Type Parameters
§
T extends SelectComponentType
[src]§Type
§
{
[src]type: T;
custom_id: string;
placeholder?: string;
min_values?: number;
max_values?: number;
disabled?: boolean;
options: StringSelectOption[];
channel_types?: ChannelTypes[];
}