@studiometa/js-toolkit
Version:
A set of useful little bits of JavaScript to boost your project! 🚀
39 lines (38 loc) • 601 B
JavaScript
class AbstractManager {
/**
* Base instance.
*/
__base;
/**
* Get the base instance root element.
*/
get __element() {
return this.__base.$el;
}
/**
* Get the base instance config.
*/
get __config() {
return this.__base.__config;
}
/**
* Get the events manager.
*/
get __eventsManager() {
return this.__base.__events;
}
__props = {};
get props() {
return this.__props;
}
/**
* Class constructor.
*/
constructor(base) {
this.__base = base;
}
}
export {
AbstractManager
};
//# sourceMappingURL=AbstractManager.js.map