Files
discordeno/src/helpers/webhooks/delete_webhook_message.ts
2021-10-23 15:50:59 +00:00

10 lines
318 B
TypeScript

import type { Bot } from "../../bot.ts";
export async function deleteWebhookMessage(bot: Bot, webhookId: bigint, webhookToken: string, messageId: bigint) {
return await bot.rest.runMethod<undefined>(
bot.rest,
"delete",
bot.constants.endpoints.WEBHOOK_MESSAGE(webhookId, webhookToken, messageId)
);
}