diff --git a/src/structures/channels.ts b/src/structures/channels.ts index 3a3019b..ad43166 100644 --- a/src/structures/channels.ts +++ b/src/structures/channels.ts @@ -392,9 +392,10 @@ export class ThreadOnlyMethods extends DiscordBase { } } -export interface VoiceChannelMethods extends BaseChannel {} -export class VoiceChannelMethods extends DiscordBase { +export interface VoiceChannelMethods extends BaseChannel { guildId?: string; +} +export class VoiceChannelMethods extends DiscordBase { setBitrate(bitrate: number | null, reason?: string) { return this.edit({ bitrate }, reason); }