quill.api-test
Version:
a twitter bot api for node.js this os one option to bypass the pay wall for twiters api
29 lines (27 loc) • 659 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',
};