function getMessagesimport { getMessages } from "https://deno.land/x/discordeno@17.0.0/helpers/messages/getMessages.ts"; getMessages(bot: Bot,channelId: BigString,options?: GetMessagesOptions,): Promise<Collection<bigint, Message>>Gets multiple messages from a channel. Parametersbot: Bot The bot instance to use to make the request. channelId: BigString The ID of the channel from which to get the messages. optionaloptions: GetMessagesOptions The parameters for the fetching of the messages. ReturnsPromise<Collection<bigint, Message>>A collection of Message objects assorted by message ID.