fix: voiceChannel mix

This commit is contained in:
MARCROCK22 2024-12-09 19:14:46 -04:00
parent c68c091b31
commit 6de6df53e6

View File

@ -392,9 +392,10 @@ export class ThreadOnlyMethods extends DiscordBase {
}
}
export interface VoiceChannelMethods extends BaseChannel<ChannelType> {}
export class VoiceChannelMethods extends DiscordBase {
export interface VoiceChannelMethods extends BaseChannel<ChannelType> {
guildId?: string;
}
export class VoiceChannelMethods extends DiscordBase {
setBitrate(bitrate: number | null, reason?: string) {
return this.edit({ bitrate }, reason);
}