aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushVoiceChannel.ts
blob: 7510b698d61f03c1104f6a640bdf445abc029d20 (plain)
1
2
3
4
5
6
7
8
9
10
11
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);
	}
}