This repository has been archived on 2025-03-10. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
cetra/lib/plugins/CetraPlugin.js

10 lines
223 B
JavaScript
Raw Normal View History

export default class CetraPlugin {
register(name, id) {
console.log('register method not implemented', this.constructor.name);
}
initComponent(el) {
console.log('there is no init method for this element', el);
}
}