diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-06-27 18:08:14 -0400 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2021-06-27 18:08:14 -0400 |
commit | 747b3c8302245699294b671d19b3d31d63f80bc1 (patch) | |
tree | ad3d987bb38d5bdaed67e6aca1263fb06331f746 /src/lib/extensions/BushInteractionMessage.ts | |
parent | 4176b6258e44e4a095376aaf0f4c687244243a69 (diff) | |
download | tanzanite-747b3c8302245699294b671d19b3d31d63f80bc1.tar.gz tanzanite-747b3c8302245699294b671d19b3d31d63f80bc1.tar.bz2 tanzanite-747b3c8302245699294b671d19b3d31d63f80bc1.zip |
did this a while ago so I don't remeber what I did
Diffstat (limited to 'src/lib/extensions/BushInteractionMessage.ts')
-rw-r--r-- | src/lib/extensions/BushInteractionMessage.ts | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/src/lib/extensions/BushInteractionMessage.ts b/src/lib/extensions/BushInteractionMessage.ts deleted file mode 100644 index 62d2519..0000000 --- a/src/lib/extensions/BushInteractionMessage.ts +++ /dev/null @@ -1,16 +0,0 @@ -import { AkairoMessage } from 'discord-akairo'; -import { CommandInteraction } from 'discord.js'; -import { BushClient } from './BushClient'; -import { BushCommandUtil } from './BushCommandUtil'; - -export class BushSlashMessage extends AkairoMessage { - public declare client: BushClient; - public declare util: BushCommandUtil; - public constructor( - client: BushClient, - interaction: CommandInteraction, - { slash, replied }: { slash?: boolean; replied?: boolean } - ) { - super(client, interaction, { slash, replied }); - } -} |