From de3c86f804dd1b2a8b1b8fe102ea721cc4e73db5 Mon Sep 17 00:00:00 2001 From: DaStormer <40336269+DaStormer@users.noreply.github.com> Date: Wed, 11 Aug 2021 03:04:49 -0400 Subject: [PATCH] docs(ApplicationCommandData): fix type property (#6385) --- src/structures/ApplicationCommand.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/structures/ApplicationCommand.js b/src/structures/ApplicationCommand.js index 139693de1..60b7719a0 100644 --- a/src/structures/ApplicationCommand.js +++ b/src/structures/ApplicationCommand.js @@ -111,7 +111,7 @@ class ApplicationCommand extends Base { * @typedef {Object} ApplicationCommandData * @property {string} name The name of the command * @property {string} description The description of the command - * @property {ApplicationCommandTypes} [type] The type of the command + * @property {ApplicationCommandType} [type] The type of the command * @property {ApplicationCommandOptionData[]} [options] Options for the command * @property {boolean} [defaultPermission] Whether the command is enabled by default when the app is added to a guild */