aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushBaseGuildVoiceChannel.ts
blob: 1ebefee45d32f6783c69bda5d88390eaca8e9d2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import { BaseGuildVoiceChannel, Collection, Snowflake } from 'discord.js';
import { BushCategoryChannel } from './BushCategoryChannel.js';
import { BushGuild } from './BushGuild.js';
import { BushGuildMember } from './BushGuildMember.js';

/**
 * Represents a voice-based guild channel on Discord.
 */
export declare class BushBaseGuildVoiceChannel extends BaseGuildVoiceChannel {
	public readonly members: Collection<Snowflake, BushGuildMember>;
	public guild: BushGuild;
	public readonly parent: BushCategoryChannel | null;
}