From 94d5b203395388b2304f10af747d7c9761dd95ac Mon Sep 17 00:00:00 2001 From: Skillz4Killz <23035000+Skillz4Killz@users.noreply.github.com> Date: Sun, 28 Aug 2022 11:17:43 +0000 Subject: [PATCH] fix: description is not required for ctx cmds --- helpers/interactions/commands/createApplicationCommand.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helpers/interactions/commands/createApplicationCommand.ts b/helpers/interactions/commands/createApplicationCommand.ts index 70a1077b1..5193a8f4a 100644 --- a/helpers/interactions/commands/createApplicationCommand.ts +++ b/helpers/interactions/commands/createApplicationCommand.ts @@ -94,7 +94,7 @@ export interface CreateApplicationCommand { } /** https://discord.com/developers/docs/interactions/application-commands#endpoints-json-params */ -export interface CreateContextApplicationCommand extends Omit { +export interface CreateContextApplicationCommand extends Omit { /** The type of the command */ type: ApplicationCommandTypes.Message | ApplicationCommandTypes.User; }