discord.js
Version:
A powerful library for interacting with the Discord API
30 lines (27 loc) • 632 B
JavaScript
;
/**
* @typedef {Object} ShardEvents
* @property {string} Death death
* @property {string} Disconnect disconnect
* @property {string} Error error
* @property {string} Message message
* @property {string} Ready ready
* @property {string} Reconnecting reconnecting
* @property {string} Resume resume
* @property {string} Spawn spawn
*/
// JSDoc for IntelliSense purposes
/**
* @type {ShardEvents}
* @ignore
*/
module.exports = {
Death: 'death',
Disconnect: 'disconnect',
Error: 'error',
Message: 'message',
Ready: 'ready',
Reconnecting: 'reconnecting',
Resume: 'resume',
Spawn: 'spawn',
};