blob: 416b0d85b8d68f89e2c9451b25531385f4017345 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { VoiceState } from 'discord.js';
import { BushGuild } from './BushGuild';
import { BushGuildMember } from './BushGuildMember';
import { BushStageChannel } from './BushStageChannel';
import { BushVoiceChannel } from './BushVoiceChannel';
export class BushVoiceState extends VoiceState {
public declare readonly channel: BushVoiceChannel | BushStageChannel | null;
public declare guild: BushGuild;
public declare readonly member: BushGuildMember | null;
public constructor(guild: BushGuild, data: unknown) {
super(guild, data);
}
}
|