12 lines
327 B
JavaScript
Raw Normal View History

'use strict';
const { Events } = require('../../../util/Constants');
module.exports = (client, { d: data }) => {
2022-06-15 23:07:24 +07:00
/**
* Emitted whenever client user send interaction and success
* @event Client#interactionSuccess
* @param {InteractionResponseBody} data data
*/
client.emit(Events.INTERACTION_SUCCESS, data);
};