function getReactionsimport { getReactions } from "https://dotland.deno.dev/x/discordeno@18.0.1/plugins/helpers/deps.ts"; getReactions(bot: Bot,channelId: BigString,messageId: BigString,reaction: string,options?: GetReactions,): Promise<Collection<bigint, User>>Gets the list of users that reacted with an emoji to a message. Parametersbot: Bot The bot instance to use to make the request. channelId: BigString The ID of the channel the message to get the users for is in. messageId: BigString The ID of the message to get the users for. reaction: string The reaction for which to get the users. optionaloptions: GetReactions The parameters for the fetching of the users. ReturnsPromise<Collection<bigint, User>>A collection of User objects assorted by user ID.