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, }