mirror of
https://github.com/discordeno/discordeno.git
synced 2026-06-04 09:50:07 +00:00
25 lines
935 B
TypeScript
25 lines
935 B
TypeScript
import type { Bot } from "../../../bot.ts";
|
|
import { BigString } from "../../../types/shared.ts";
|
|
|
|
/**
|
|
* Deletes a follow-up message to an interaction.
|
|
*
|
|
* @param bot - The bot instance to use to make the request.
|
|
* @param token - The interaction token to use, provided in the original interaction.
|
|
* @param messageId - The ID of the message to delete.
|
|
*
|
|
* @remarks
|
|
* Unlike `deleteMessage()`, this endpoint allows the bot user to act without needing to see the channel the message is in.
|
|
*
|
|
* Fires a _Message Delete_ event.
|
|
*
|
|
* @see {@link https://discord.com/developers/docs/interactions/receiving-and-responding#delete-followup-message}
|
|
*/
|
|
export async function deleteFollowupMessage(bot: Bot, token: string, messageId: BigString): Promise<void> {
|
|
return await bot.rest.runMethod<void>(
|
|
bot.rest,
|
|
"DELETE",
|
|
bot.constants.routes.INTERACTION_ID_TOKEN_MESSAGE_ID(bot.applicationId, token, messageId),
|
|
);
|
|
}
|