diff options
Diffstat (limited to 'src/lib/extensions/BotCommand.ts')
-rw-r--r-- | src/lib/extensions/BotCommand.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/extensions/BotCommand.ts b/src/lib/extensions/BotCommand.ts index 2db93b0..c5d31e9 100644 --- a/src/lib/extensions/BotCommand.ts +++ b/src/lib/extensions/BotCommand.ts @@ -4,6 +4,11 @@ import { BotClient } from './BotClient'; export interface BotCommandOptions extends CommandOptions { slashCommandOptions?: APIApplicationCommandOption[]; + description: { + content: string; + usage: string; + examples: string[]; + }; } export class BotCommand extends Command { |