From 8d6ebd83b16a465b11edfeb43f6a5e58da0076e8 Mon Sep 17 00:00:00 2001 From: TymanWasTaken <32660892+tymanwastaken@users.noreply.github.com> Date: Wed, 12 May 2021 02:41:34 -0600 Subject: add level slash command --- src/lib/extensions/BotCommand.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/lib/extensions/BotCommand.ts') diff --git a/src/lib/extensions/BotCommand.ts b/src/lib/extensions/BotCommand.ts index 79c7a9f..2db93b0 100644 --- a/src/lib/extensions/BotCommand.ts +++ b/src/lib/extensions/BotCommand.ts @@ -1,9 +1,14 @@ import { Command, CommandOptions } from 'discord-akairo'; +import { APIApplicationCommandOption } from 'discord-api-types'; import { BotClient } from './BotClient'; +export interface BotCommandOptions extends CommandOptions { + slashCommandOptions?: APIApplicationCommandOption[]; +} + export class BotCommand extends Command { public client: BotClient; - constructor(id: string, options?: CommandOptions) { + constructor(id: string, options?: BotCommandOptions) { super(id, options); this.options = options; } -- cgit