export declare class StringSelectMenuBuilder extends BaseSelectMenuBuilder<APIStringSelectComponent>
Represents a string select menu component
Constructors
data?: Partial<APIStringSelectComponent>)
constructor(data?: Partial<APIStringSelectComponent>
Creates a new select menu from API data
readonlyPartial<DataType> data :
The API data associated with this component
Inherited from: ComponentBuilder
readonlyStringSelectMenuOptionBuilder[] options :
The options within this select menu
setCustomIdcustomId: string) : this (
customId: string
Sets the custom id for this select menu
Inherited from: BaseSelectMenuBuilder
setDisableddisabled?: boolean) : this (
disabled?: boolean
Sets whether this select menu is disabled
Inherited from: BaseSelectMenuBuilder
setMaxValuesmaxValues: number) : this (
maxValues: number
Sets the maximum values that must be selected in the select menu
Inherited from: BaseSelectMenuBuilder
setMinValuesminValues: number) : this (
minValues: number
Sets the minimum values that must be selected in the select menu
Inherited from: BaseSelectMenuBuilder
setPlaceholderplaceholder: string) : this (
placeholder: string
Sets the placeholder for this select menu
Inherited from: BaseSelectMenuBuilder
Removes, replaces, or inserts options in the string select menu.
Examples:Remove the first optionRemove the first n optionRemove the last option
selectMenu.spliceOptions(0, 1);
const n = 4
selectMenu.spliceOptions(0, n);
selectMenu.spliceOptions(-1, 1);
toJSONAPIStringSelectComponent () :
Serializes this component to an API-compatible JSON object