diff --git a/ApplicationCommandTypes.ts b/ApplicationCommandTypes.ts new file mode 100644 index 0000000..e6fcd5f --- /dev/null +++ b/ApplicationCommandTypes.ts @@ -0,0 +1,29 @@ +// available in vendetta-types, but it crashes + +export const enum ApplicationCommandInputType { + BUILT_IN, + BUILT_IN_TEXT, + BUILT_IN_INTEGRATION, + BOT, + PLACEHOLDER +} + +export const enum ApplicationCommandOptionType { + SUB_COMMAND = 1, + SUB_COMMAND_GROUP, + STRING, + INTEGER, + BOOLEAN, + USER, + CHANNEL, + ROLE, + MENTIONABLE, + NUMBER, + ATTACHMENT +} + +export const enum ApplicationCommandType { + CHAT = 1, + USER, + MESSAGE +} \ No newline at end of file