import WebComponent from "../src/WebComponent.js"; export class BooleanPropTest extends WebComponent { isInline = false; anotherone = false; static properties = ["is-inline", "anotherone"]; onChanges(changes) { console.log(">>> boolean prop test", changes); } get template() { return `
is-inline: ${this.isInline}
another-one: ${this.anotherone}
`; } } customElements.define("boolean-prop-test", BooleanPropTest);