aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/BotCommand.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/extensions/BotCommand.ts')
-rw-r--r--src/lib/extensions/BotCommand.ts5
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 {