From 7057cebb3c37634cfa1468e1f49ce30a890681b6 Mon Sep 17 00:00:00 2001 From: IRONM00N <64110067+IRONM00N@users.noreply.github.com> Date: Fri, 25 Feb 2022 23:20:58 -0500 Subject: chore: update dependencies and fix breaking changes --- src/lib/extensions/discord.js/BushVoiceChannel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/lib/extensions/discord.js/BushVoiceChannel.ts') 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; 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; isText(): this is BushTextChannel; isDM(): this is BushDMChannel; isVoice(): this is BushVoiceChannel; -- cgit