docs(APISelectMenuOption): correct character limit (#881)

This commit is contained in:
Isidro Casiano
2024-03-04 20:59:49 +02:00
committed by GitHub
parent 803dcd7bdd
commit 5e295706b8
4 changed files with 8 additions and 8 deletions
+2 -2
View File
@@ -1766,7 +1766,7 @@ export type APISelectMenuComponent =
*/
export interface APISelectMenuOption {
/**
* The user-facing name of the option (max 25 chars)
* The user-facing name of the option (max 100 chars)
*/
label: string;
/**
@@ -1774,7 +1774,7 @@ export interface APISelectMenuOption {
*/
value: string;
/**
* An additional description of the option (max 50 chars)
* An additional description of the option (max 100 chars)
*/
description?: string;
/**
+2 -2
View File
@@ -1735,7 +1735,7 @@ export type APISelectMenuComponent =
*/
export interface APISelectMenuOption {
/**
* The user-facing name of the option (max 25 chars)
* The user-facing name of the option (max 100 chars)
*/
label: string;
/**
@@ -1743,7 +1743,7 @@ export interface APISelectMenuOption {
*/
value: string;
/**
* An additional description of the option (max 50 chars)
* An additional description of the option (max 100 chars)
*/
description?: string;
/**
+2 -2
View File
@@ -1766,7 +1766,7 @@ export type APISelectMenuComponent =
*/
export interface APISelectMenuOption {
/**
* The user-facing name of the option (max 25 chars)
* The user-facing name of the option (max 100 chars)
*/
label: string;
/**
@@ -1774,7 +1774,7 @@ export interface APISelectMenuOption {
*/
value: string;
/**
* An additional description of the option (max 50 chars)
* An additional description of the option (max 100 chars)
*/
description?: string;
/**
+2 -2
View File
@@ -1735,7 +1735,7 @@ export type APISelectMenuComponent =
*/
export interface APISelectMenuOption {
/**
* The user-facing name of the option (max 25 chars)
* The user-facing name of the option (max 100 chars)
*/
label: string;
/**
@@ -1743,7 +1743,7 @@ export interface APISelectMenuOption {
*/
value: string;
/**
* An additional description of the option (max 50 chars)
* An additional description of the option (max 100 chars)
*/
description?: string;
/**