aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushVoiceChannel.ts
blob: 4f96b1f9e2e22ace8d23349eb9604c1a6d002b46 (plain)
1
2
3
4
5
6
7
8
9
10
import { Collection, Snowflake, VoiceChannel } from 'discord.js';
import { BushClient, BushGuild, BushGuildMember } from '..';

export class BushVoiceChannel extends VoiceChannel {
	public declare readonly client: BushClient;
	public declare readonly members: Collection<Snowflake, BushGuildMember>;
	public constructor(guild: BushGuild, data?: unknown) {
		super(guild, data);
	}
}