function deleteWebhookMessageimport { deleteWebhookMessage } from "https://deno.land/x/discordeno@17.0.0/helpers/webhooks/mod.ts"; deleteWebhookMessage(bot: Bot,webhookId: BigString,token: string,messageId: BigString,options?: DeleteWebhookMessageOptions,): Promise<void>Deletes a webhook message. Parametersbot: Bot The bot instance to use to make the request. webhookId: BigString The ID of the webhook to delete the message belonging to. token: string The webhook token, used to manage the webhook. messageId: BigString The ID of the message to delete. optionaloptions: DeleteWebhookMessageOptions The parameters for the deletion of the message. ReturnsPromise<void>