2022-04-12 20:46:25 +07:00
|
|
|
'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
|
|
|
|
*/
|
2022-04-16 17:44:43 +07:00
|
|
|
client.emit(Events.INTERACTION_SUCCESS, data);
|
|
|
|
};
|