aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushTextChannel.ts
diff options
context:
space:
mode:
authorIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-06-29 20:48:27 -0400
committerIRONM00N <64110067+IRONM00N@users.noreply.github.com>2021-06-29 20:48:27 -0400
commitfd675ca9d60cc06d892ebc36a1b9624f15233f20 (patch)
tree0c510afb64eb2c6f45c15c7e22148c6e7f7ed2d7 /src/lib/extensions/discord.js/BushTextChannel.ts
parent921b07f9716fdd413ec89c4a40419a6e2d39824b (diff)
downloadtanzanite-fd675ca9d60cc06d892ebc36a1b9624f15233f20.tar.gz
tanzanite-fd675ca9d60cc06d892ebc36a1b9624f15233f20.tar.bz2
tanzanite-fd675ca9d60cc06d892ebc36a1b9624f15233f20.zip
don't judge part 1
Diffstat (limited to 'src/lib/extensions/discord.js/BushTextChannel.ts')
-rw-r--r--src/lib/extensions/discord.js/BushTextChannel.ts13
1 files changed, 13 insertions, 0 deletions
diff --git a/src/lib/extensions/discord.js/BushTextChannel.ts b/src/lib/extensions/discord.js/BushTextChannel.ts
new file mode 100644
index 0000000..b58aa7b
--- /dev/null
+++ b/src/lib/extensions/discord.js/BushTextChannel.ts
@@ -0,0 +1,13 @@
+import { TextChannel } from 'discord.js';
+import { BushClient } from '../discord-akairo/BushClient';
+import { BushGuild } from './BushGuild';
+import { BushMessageManager } from './BushMessageManager';
+
+export class BushTextChannel extends TextChannel {
+ public declare readonly client: BushClient;
+ public declare guild: BushGuild;
+ public declare messages: BushMessageManager;
+ constructor(guild: BushGuild, data?: unknown) {
+ super(guild, data);
+ }
+}