JaBa/base/BaseEvent.js

14 lines
No EOL
196 B
JavaScript

class BaseEvent {
constructor(options) {
/**
* @type {String}
*/
this.name = options.name;
/**
* @type {Boolean}
*/
this.once = options.once;
}
}
module.exports = BaseEvent;