fix(core): update

This commit is contained in:
2021-11-26 18:27:29 +01:00
parent dd71751864
commit abb20def4b
2 changed files with 14 additions and 0 deletions

View File

@ -20,6 +20,17 @@ enum ETestEnum {
export class TestDemoelement extends DeesElement {
public static demo = () => html`<test-demoelement>This is a slot text</test-demoelement>`;
@property()
public notTyped = 'hello';
@property({
type: String,
})
public typedAndNotInitizalized: string;
@property()
public notTypedAndNotInitizalized: string;
@property({
type: Boolean,
})