fix(ApplicationCommandOptionData): options property should be itself (#5679)

Co-authored-by: Jan <66554238+vaporox@users.noreply.github.com>
This commit is contained in:
SpaceEEC
2021-05-27 13:14:13 +02:00
committed by GitHub
parent 7d9818e21a
commit b90b0c3cfa

2
typings/index.d.ts vendored
View File

@@ -2479,7 +2479,7 @@ declare module 'discord.js' {
description: string;
required?: boolean;
choices?: ApplicationCommandOptionChoice[];
options?: ApplicationCommandOption[];
options?: this[];
}
interface ApplicationCommandOption extends ApplicationCommandOptionData {