export declare class StringSelectMenuBuilder extends BaseSelectMenuBuilder<APIStringSelectComponent>A builder that creates API-compatible JSON data for string select menus.
Constructors
constructor(data?: Partial<APIStringSelectComponent>)
Creates a new select menu from API data.
const selectMenu = new StringSelectMenuBuilder({
	custom_id: 'a cool select menu',
	placeholder: 'select an option',
	max_values: 2,
	options: [
		{ label: 'option 1', value: '1' },
		{ label: 'option 2', value: '2' },
		{ label: 'option 3', value: '3' },
	],
});const selectMenu = new StringSelectMenuBuilder({
	custom_id: 'a cool select menu',
})
	.setMinValues(1)
	.addOptions({
		label: 'Catchy',
		value: 'catch',
	});readonlydata : Partial<SelectMenuType> 
The API data associated with this component.
Inherited from: ComponentBuilder
readonlyoptions : StringSelectMenuOptionBuilder[] 
The options within this select menu.
 addOptions(...options: RestOrArray<APISelectMenuOption | StringSelectMenuOptionBuilder>) : this
Adds options to this select menu.
Clears the id of this component, defaulting to a default incremented id.
Inherited from: ComponentBuilder
 setCustomId(customId: string) : this
Sets the custom id for this select menu.
Inherited from: BaseSelectMenuBuilder
 setDisabled(disabled?: boolean) : this
Sets whether this select menu is disabled.
Inherited from: BaseSelectMenuBuilder
 setId(id: number) : this
Sets the id (not the custom id) for this component.
Inherited from: ComponentBuilder
 setMaxValues(maxValues: number) : this
Sets the maximum values that must be selected in the select menu.
Inherited from: BaseSelectMenuBuilder
 setMinValues(minValues: number) : this
Sets the minimum values that must be selected in the select menu.
Inherited from: BaseSelectMenuBuilder
 setOptions(...options: RestOrArray<APISelectMenuOption | StringSelectMenuOptionBuilder>) : this
Sets the options for this select menu.
 setPlaceholder(placeholder: string) : this
Sets the placeholder for this select menu.
Inherited from: BaseSelectMenuBuilder
 spliceOptions(index: numberdeleteCount: number...options: RestOrArray<APISelectMenuOption | StringSelectMenuOptionBuilder>) : this
Removes, replaces, or inserts options for this select menu.
selectMenu.spliceOptions(0, 1);const n = 4;
selectMenu.spliceOptions(0, n);selectMenu.spliceOptions(-1, 1);toJSON() : APIStringSelectComponent
Serializes this builder to API-compatible JSON data.