aboutsummaryrefslogtreecommitdiff
path: root/src/lib/extensions/discord.js/BushVoiceChannel.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/lib/extensions/discord.js/BushVoiceChannel.ts')
-rw-r--r--src/lib/extensions/discord.js/BushVoiceChannel.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/extensions/discord.js/BushVoiceChannel.ts b/src/lib/extensions/discord.js/BushVoiceChannel.ts
index a0ee47d..6691045 100644
--- a/src/lib/extensions/discord.js/BushVoiceChannel.ts
+++ b/src/lib/extensions/discord.js/BushVoiceChannel.ts
@@ -22,7 +22,6 @@ import type { RawGuildChannelData } from 'discord.js/typings/rawDataTypes';
*/
export class BushVoiceChannel extends VoiceChannel {
public declare readonly client: BushClient;
- public declare readonly members: Collection<Snowflake, BushGuildMember>;
public constructor(guild: BushGuild, data?: RawGuildChannelData) {
super(guild, data);
@@ -30,6 +29,7 @@ export class BushVoiceChannel extends VoiceChannel {
}
export interface BushVoiceChannel extends VoiceChannel {
+ get members(): Collection<Snowflake, BushGuildMember>;
isText(): this is BushTextChannel;
isDM(): this is BushDMChannel;
isVoice(): this is BushVoiceChannel;