export declare class ChannelSelectMenuBuilder extends BaseSelectMenuBuilder<APIChannelSelectComponent>
export declare class ChannelSelectMenuBuilder extends BaseSelectMenuBuilder<APIChannelSelectComponent>
No summary provided.
Extends
BaseSelectMenuBuilder<APIChannelSelectComponent>constructor(data?)
Creates a new select menu from API data
Example
Creating a select menu from an API data objectconst selectMenu = new ChannelSelectMenuBuilder({
custom_id: 'a cool select menu',
placeholder: 'select an option',
max_values: 2,
});
const selectMenu = new ChannelSelectMenuBuilder({
custom_id: 'a cool select menu',
placeholder: 'select an option',
max_values: 2,
});
Example
Creating a select menu using setters and API dataconst selectMenu = new ChannelSelectMenuBuilder({
custom_id: 'a cool select menu',
})
.addChannelTypes(ChannelType.GuildText, ChannelType.GuildAnnouncement)
.setMinValues(2)
const selectMenu = new ChannelSelectMenuBuilder({
custom_id: 'a cool select menu',
})
.addChannelTypes(ChannelType.GuildText, ChannelType.GuildAnnouncement)
.setMinValues(2)
Name | Type | Optional | Description |
---|---|---|---|
data | Partial<APIChannelSelectComponent> | Yes | The API data to create this select menu with |
Readonly
data
:
Partial<DataType>
The API data associated with this component
Inherited from ComponentBuilderaddChannelTypes(types)
:
this
Name | Type | Optional | Description |
---|---|---|---|
types | RestOrArray<ChannelType> | No | None |
setChannelTypes(types)
:
this
Name | Type | Optional | Description |
---|---|---|---|
types | RestOrArray<ChannelType> | No | None |
setCustomId(customId)
:
this
Sets the custom id for this select menu
Name | Type | Optional | Description |
---|---|---|---|
customId | string | No | The custom id to use for this select menu |
setDisabled(disabled?)
:
this
Sets whether this select menu is disabled
Name | Type | Optional | Description |
---|---|---|---|
disabled | boolean | Yes | Whether this select menu is disabled |
setMaxValues(maxValues)
:
this
Sets the maximum values that must be selected in the select menu
Name | Type | Optional | Description |
---|---|---|---|
maxValues | number | No | The maximum values that must be selected |
setMinValues(minValues)
:
this
Sets the minimum values that must be selected in the select menu
Name | Type | Optional | Description |
---|---|---|---|
minValues | number | No | The minimum values that must be selected |
setPlaceholder(placeholder)
:
this
Sets the placeholder for this select menu
Name | Type | Optional | Description |
---|---|---|---|
placeholder | string | No | The placeholder to use for this select menu |
toJSON()
:
APIChannelSelectComponent
Serializes this component to an API-compatible JSON object