blob: f65906e4c1ea51ca5d42336d36e2d844c93973f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import type { BushClient, BushGuild, BushGuildMember } from '#lib';
import { VoiceChannel, type Collection, type Snowflake } from 'discord.js';
import type { RawGuildChannelData } from 'discord.js/typings/rawDataTypes';
export class BushVoiceChannel extends VoiceChannel {
public declare readonly client: BushClient;
public declare readonly members: Collection<Snowflake, BushGuildMember>;
public constructor(guild: BushGuild, data?: RawGuildChannelData) {
super(guild, data);
}
}
|