diff options
Diffstat (limited to 'node_modules/discord.js/src/util/ShardEvents.js')
-rw-r--r-- | node_modules/discord.js/src/util/ShardEvents.js | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/node_modules/discord.js/src/util/ShardEvents.js b/node_modules/discord.js/src/util/ShardEvents.js new file mode 100644 index 0000000..f5ba961 --- /dev/null +++ b/node_modules/discord.js/src/util/ShardEvents.js @@ -0,0 +1,29 @@ +'use strict'; + +/** + * @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', +}; |