import { WebComponent } from "../../src/index.js"; export class BooleanPropTest extends WebComponent { static properties = ["is-inline", "anotherone"]; get template() { return `

is-inline: ${this.props.isInline}

another-one: ${this.props.anotherone}

`; } } customElements.define("boolean-prop-test", BooleanPropTest);