aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushBaseGuildVoiceChannel.ts
blob: 2ffb2fdda635b5b88f60d6dbb1f3052051f5d63d (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';
import { BushGuild } from './BushGuild';
import { BushGuildMember } from './BushGuildMember';

/**
 * 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;
}