v11-discord.js
Version:
A powerful library for interacting with the Discord API - patched by molo#7947
12 lines (9 loc) • 312 B
JavaScript
const AbstractHandler = require('./AbstractHandler');
class MessageReactionRemoveAll extends AbstractHandler {
handle(packet) {
const client = this.packetManager.client;
const data = packet.d;
client.actions.MessageReactionRemoveAll.handle(data);
}
}
module.exports = MessageReactionRemoveAll;