diff options
author | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-26 16:12:11 +0000 |
---|---|---|
committer | IRONM00N <64110067+IRONM00N@users.noreply.github.com> | 2022-02-26 16:12:11 +0000 |
commit | 973bbebfd0a47b0b36d19fccf6a882e971beaaa5 (patch) | |
tree | 39dc606816ed198735a7ed0669a195f64e6a06c6 /src/lib/extensions/discord.js/BushVoiceChannel.ts | |
parent | 00ad00734ddb2c2fce8de8efcc010181c9ce1821 (diff) | |
parent | a9ac478ee06f9567f3fde73f777da88c6b876c4f (diff) | |
download | tanzanite-973bbebfd0a47b0b36d19fccf6a882e971beaaa5.tar.gz tanzanite-973bbebfd0a47b0b36d19fccf6a882e971beaaa5.tar.bz2 tanzanite-973bbebfd0a47b0b36d19fccf6a882e971beaaa5.zip |
Merge branch 'master' of https://github.com/NotEnoughUpdates/bush-bot-3.0
Diffstat (limited to 'src/lib/extensions/discord.js/BushVoiceChannel.ts')
-rw-r--r-- | src/lib/extensions/discord.js/BushVoiceChannel.ts | 2 |
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; |