function getChannelInvitesimport { getChannelInvites } from "https://deno.land/x/discordeno@17.0.1/helpers/channels/mod.ts"; getChannelInvites(bot: Bot, channelId: BigString): Promise<Collection<string, InviteMetadata>>Gets the list of invites for a channel. Parametersbot: Bot The bot instance to use to make the request. channelId: BigString The ID of the channel to get the invites of. ReturnsPromise<Collection<string, InviteMetadata>>A collection of InviteMetadata objects assorted by invite code.