import {
DeesElement,
customElement,
TemplateResult,
html,
property,
} from '@designestate/dees-element';
import * as domtools from '@designestate/dees-domtools';
enum ETestEnum {
'first' = 'first',
'second' = 'second',
'awesome' = 'awesome',
}
@customElement('test-demoelement')
export class TestDemoelement extends DeesElement {
public static demo = () => html`
demoBoolean is ${this.demoBoolean} demoString is "${this.demoString}" demoNumber is ${this.demoNumber} demoEnum is "${this.demoENum}"