blob: 167a369e79f7f02110d8a5ce9b56d9736d35e7e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import type { BushGuild, BushGuildMember, BushStageChannel, BushVoiceChannel } from '#lib';
import { VoiceState } from 'discord.js';
import type { RawVoiceStateData } from 'discord.js/typings/rawDataTypes';
export class BushVoiceState extends VoiceState {
// public declare readonly client: BushClient;
public declare readonly channel: BushVoiceChannel | BushStageChannel | null;
public declare guild: BushGuild;
public declare readonly member: BushGuildMember | null;
public constructor(guild: BushGuild, data: RawVoiceStateData) {
super(guild, data);
}
}
|