fix(core): update

This commit is contained in:
2020-11-25 13:43:39 +00:00
commit c21bbdb147
14 changed files with 11602 additions and 0 deletions

19
ts/index.ts Normal file
View 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'));
}
}