aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushBaseGuildVoiceChannel.d.ts
blob: 21be20698d1bef1970cbcae6e36477e53266eed5 (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 class BushBaseGuildVoiceChannel extends BaseGuildVoiceChannel {
	public readonly members: Collection<Snowflake, BushGuildMember>;
	public guild: BushGuild;
	public readonly parent: BushCategoryChannel | null;
}