feat(plugins) default plugin class and initial plugins: interact, timing and utils base

This commit is contained in:
Benjamin Wegener
2024-01-11 23:25:33 +00:00
parent 159e53137a
commit 46edfb00bd
4 changed files with 238 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
export default class CetraPlugin {
constructor() {}
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);
}
}