From 6de6df53e62642255504f0eb0df0d3bf1ae4c830 Mon Sep 17 00:00:00 2001 From: MARCROCK22 Date: Mon, 9 Dec 2024 19:14:46 -0400 Subject: [PATCH] fix: voiceChannel mix --- src/structures/channels.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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); }