diff --git a/src/types/interactions/commands/application_command_option.ts b/src/types/interactions/commands/application_command_option.ts index 2d5a3c90a..8de146b15 100644 --- a/src/types/interactions/commands/application_command_option.ts +++ b/src/types/interactions/commands/application_command_option.ts @@ -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; }