import { LitElement, html } from 'lit'; import { customElement } from 'lit/decorators.js'; @customElement('bible-gateway-ceb') export class BibleGatewayCEB extends LitElement { override render() { return html``; } } declare global { interface HTMLElementTagNameMap { 'bible-gateway-ceb': BibleGatewayCEB; } }