fix(core): update

This commit is contained in:
Philipp Kunz 2020-11-25 14:56:18 +00:00
parent 390f42061e
commit f577ef0e61
2 changed files with 4 additions and 3 deletions

View File

@ -1,6 +1,7 @@
import { LitElement } from 'lit-element';
import { LitElement, property } from 'lit-element';
const litElement = {
LitElement
LitElement,
property
};
import * as domtools from '@designestate/dees-domtools';

View File

@ -9,7 +9,7 @@ export {
} from 'lit-element';
export class DeesElement extends plugins.litElement.LitElement {
@plugins.litElement.property({type: Boolean})
public goBright: boolean = false;
public domtoolsPromise = plugins.domtools.elementBasic.setup(this);