fix(core): update
This commit is contained in:
19
ts/index.ts
Normal file
19
ts/index.ts
Normal file
@ -0,0 +1,19 @@
|
||||
import * as plugins from './dees-element.plugins';
|
||||
|
||||
|
||||
|
||||
export class DeesElement extends plugins.litElement.LitElement {
|
||||
|
||||
public goBright: boolean = false;
|
||||
public domtoolsPromise = plugins.domtools.elementBasic.setup(this);
|
||||
|
||||
public connectedCallback() {
|
||||
super.connectedCallback();
|
||||
this.dispatchEvent(new CustomEvent('domtools-disconnected'));
|
||||
}
|
||||
|
||||
public disconnectedCallback() {
|
||||
super.disconnectedCallback();
|
||||
this.dispatchEvent(new CustomEvent('domtools-disconnected'));
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user