/** Unpin a message in a channel. Requires MANAGE_MESSAGES. */ import type { Bot } from "../../bot.ts"; export async function unpinMessage(bot: Bot, channelId: bigint, messageId: bigint) { await bot.rest.runMethod(bot.rest, "delete", bot.constants.endpoints.CHANNEL_PIN(channelId, messageId)); }