diff --git a/typings/index.d.ts b/typings/index.d.ts index 6c63dc8fa..6155282be 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -2879,11 +2879,12 @@ export interface ApplicationCommandOptionData { description: string; required?: boolean; choices?: ApplicationCommandOptionChoice[]; - options?: this[]; + options?: ApplicationCommandOptionData[]; } export interface ApplicationCommandOption extends ApplicationCommandOptionData { type: ApplicationCommandOptionType; + options?: ApplicationCommandOption[]; } export interface ApplicationCommandOptionChoice {