Files
discord.js-selfbot/src/client/websocket/handlers/INTERACTION_FAILED.js
2022-04-16 17:44:43 +07:00

7 lines
165 B
JavaScript

'use strict';
const { Events } = require('../../../util/Constants');
module.exports = (client, { d: data }) => {
client.emit(Events.INTERACTION_FAILED, data);
};