JaBa/src/base_OLD/BaseEvent.js

14 lines
195 B
JavaScript

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