function connectToVoiceChannelimport { connectToVoiceChannel } from "https://dotland.deno.dev/x/discordeno@17.2.0/plugins/validations/deps.ts"; connectToVoiceChannel(bot: Bot,guildId: BigString,channelId: BigString,options?: AtLeastOne<Omit<UpdateVoiceState, "guildId" | "channelId">>,): Promise<void>Connects the bot user to a voice or stage channel. This function sends the Update Voice State gateway command over the gateway behind the scenes. Parametersbot: Bot The bot instance to use to make the request. guildId: BigString The ID of the guild the voice channel to leave is in. channelId: BigStringoptionaloptions: AtLeastOne<Omit<UpdateVoiceState, "guildId" | "channelId">>ReturnsPromise<void>