function sendInteractionResponseimport { sendInteractionResponse } from "https://deno.land/x/discordeno@17.0.1/helpers/interactions/mod.ts"; sendInteractionResponse(bot: Bot,interactionId: BigString,token: string,options: InteractionResponse,): Promise<void>Sends a response to an interaction. Parametersbot: Bot The bot instance to use to make the request. interactionId: BigString The ID of the interaction to respond to. token: string The interaction token to use, provided in the original interaction. options: InteractionResponse The parameters for the creation of the message. ReturnsPromise<void>An instance of the created Message.