function deleteMessagesimport { deleteMessages } from "https://deno.land/x/discordeno@17.0.1/helpers/mod.ts"; deleteMessages(bot: Bot,channelId: BigString,messageIds: BigString[],reason?: string,): Promise<void>Deletes multiple messages from a channel. Parametersbot: Bot The bot instance to use to make the request. channelId: BigString The ID of the channel to delete the messages from. messageIds: BigString[] The IDs of the messages to delete from the channel. optionalreason: stringReturnsPromise<void>