feat(types): add ApplicationCommandOption.autocomplete

This commit is contained in:
ITOH
2021-09-30 20:36:28 +02:00
parent 1c8c9a11ff
commit 60a424d83b

View File

@@ -15,4 +15,6 @@ export interface ApplicationCommandOption {
choices?: ApplicationCommandOptionChoice[];
/** If the option is a subcommand or subcommand group type, this nested options will be the parameters */
options?: ApplicationCommandOption[];
/** Whether this option should make autocomplete interactions. */
autocomplete?: boolean;
}