Skip to main content
Latest
File
import { Bot } from "../../bot.ts";import { DiscordGatewayPayload, DiscordMessageReactionRemoveAll } from "../../types/discord.ts";
export async function handleMessageReactionRemoveAll(bot: Bot, data: DiscordGatewayPayload) { const payload = data.d as DiscordMessageReactionRemoveAll;
bot.events.reactionRemoveAll(bot, { channelId: bot.transformers.snowflake(payload.channel_id), messageId: bot.transformers.snowflake(payload.message_id), guildId: payload.guild_id ? bot.transformers.snowflake(payload.guild_id) : undefined, });}