mirror of
https://github.com/discordjs/discord-api-types.git
synced 2026-06-01 08:20:10 +00:00
fix(APISelectMenuComponent): options property is required (#248)
This commit is contained in:
@@ -1027,7 +1027,7 @@ export interface APISelectMenuComponent extends APIBaseMessageComponent<Componen
|
||||
/**
|
||||
* The choices in the select, max 25
|
||||
*/
|
||||
options?: APISelectMenuOption[];
|
||||
options: APISelectMenuOption[];
|
||||
/**
|
||||
* Custom placeholder text if nothing is selected, max 100 characters
|
||||
*/
|
||||
|
||||
@@ -1156,7 +1156,7 @@ export interface APISelectMenuComponent extends APIBaseMessageComponent<Componen
|
||||
/**
|
||||
* The choices in the select, max 25
|
||||
*/
|
||||
options?: APISelectMenuOption[];
|
||||
options: APISelectMenuOption[];
|
||||
/**
|
||||
* Custom placeholder text if nothing is selected, max 100 characters
|
||||
*/
|
||||
|
||||
@@ -1027,7 +1027,7 @@ export interface APISelectMenuComponent extends APIBaseMessageComponent<Componen
|
||||
/**
|
||||
* The choices in the select, max 25
|
||||
*/
|
||||
options?: APISelectMenuOption[];
|
||||
options: APISelectMenuOption[];
|
||||
/**
|
||||
* Custom placeholder text if nothing is selected, max 100 characters
|
||||
*/
|
||||
|
||||
@@ -1156,7 +1156,7 @@ export interface APISelectMenuComponent extends APIBaseMessageComponent<Componen
|
||||
/**
|
||||
* The choices in the select, max 25
|
||||
*/
|
||||
options?: APISelectMenuOption[];
|
||||
options: APISelectMenuOption[];
|
||||
/**
|
||||
* Custom placeholder text if nothing is selected, max 100 characters
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user