From c6595ffefee8394f87839e8f3cdf5d1473385584 Mon Sep 17 00:00:00 2001 From: Reboot-Codes <55662140+Reboot-Codes@users.noreply.github.com> Date: Mon, 27 Dec 2021 11:03:55 -0700 Subject: [PATCH] Add descriptions for ApplicationCommandTypes --- src/types/interactions/commands/applicationCommandTypes.ts | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/types/interactions/commands/applicationCommandTypes.ts b/src/types/interactions/commands/applicationCommandTypes.ts index 7f542c179..ee60ffa11 100644 --- a/src/types/interactions/commands/applicationCommandTypes.ts +++ b/src/types/interactions/commands/applicationCommandTypes.ts @@ -1,5 +1,8 @@ export enum ApplicationCommandTypes { + /** A text-based command that shows up when a user types `/` */ ChatInput = 1, + /** A UI-based command that shows up when you right click or tap on a user */ User, + /** A UI-based command that shows up when you right click or tap on a message */ Message, }