UNPKG

discore.js

Version:

Discord.js-based powerful node.js module to interact with Discord API.

19 lines (16 loc) 415 B
const Base = require('./Base'); const defaultOptions = {}; /** * @extends {Base} */ module.exports = class Monitor extends Base { constructor(client, store, fullpath, options = {}) { super(client, store, 'monitor', fullpath, options); /** * @name Monitor#_options * @type {Object} * @private */ this._options = { ...defaultOptions, ...this._options }; } };