mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 20:51:42 +03:00
11 lines
423 B
TypeScript
11 lines
423 B
TypeScript
|
// Loaded from https://deno.land/x/discordeno@11.0.0-rc.2/src/types/interactions/commands/application_command_option_choice.ts
|
||
|
|
||
|
|
||
|
/** https://discord.com/developers/docs/interactions/slash-commands#applicationcommandoptionchoice */
|
||
|
export interface ApplicationCommandOptionChoice {
|
||
|
/** 1-100 character choice name */
|
||
|
name: string;
|
||
|
/** Value of the choice, up to 100 characters if string */
|
||
|
value: string | number;
|
||
|
}
|