aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushVoiceChannel.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/extensions/discord.js/BushVoiceChannel.ts')
-rw-r--r--src/lib/extensions/discord.js/BushVoiceChannel.ts12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/lib/extensions/discord.js/BushVoiceChannel.ts b/src/lib/extensions/discord.js/BushVoiceChannel.ts
new file mode 100644
index 0000000..7510b69
--- /dev/null
+++ b/src/lib/extensions/discord.js/BushVoiceChannel.ts
@@ -0,0 +1,12 @@
+import { Collection, Snowflake, VoiceChannel } from 'discord.js';
+import { BushClient } from '../discord-akairo/BushClient';
+import { BushGuild } from './BushGuild';
+import { BushGuildMember } from './BushGuildMember';
+
+export class BushVoiceChannel extends VoiceChannel {
+ public declare readonly client: BushClient;
+ public declare readonly members: Collection<Snowflake, BushGuildMember>;
+ constructor(guild: BushGuild, data?: unknown) {
+ super(guild, data);
+ }
+}