From b90b0c3cfa2278caa38d1ff41eef2ccf4428b99e Mon Sep 17 00:00:00 2001 From: SpaceEEC Date: Thu, 27 May 2021 13:14:13 +0200 Subject: [PATCH] fix(ApplicationCommandOptionData): options property should be itself (#5679) Co-authored-by: Jan <66554238+vaporox@users.noreply.github.com> --- typings/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/index.d.ts b/typings/index.d.ts index ba64668dab74..cdbc695cd789 100644 --- a/typings/index.d.ts +++ b/typings/index.d.ts @@ -2479,7 +2479,7 @@ declare module 'discord.js' { description: string; required?: boolean; choices?: ApplicationCommandOptionChoice[]; - options?: ApplicationCommandOption[]; + options?: this[]; } interface ApplicationCommandOption extends ApplicationCommandOptionData {