JaBa/base/BaseEvent.js
Jonny_Bro (Nikita) c3dca64be4 prettier
2023-07-05 00:58:06 +05:00

14 lines
197 B
JavaScript

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