15 lines
342 B
TypeScript
15 lines
342 B
TypeScript
// SPDX-FileCopyrightText: 2024 Mehdi Benadel <https://mehdibenadel.com>
|
|
//
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
import { LitElement } from 'lit'
|
|
|
|
/**
|
|
* Base class for all Custom Elements.
|
|
*/
|
|
export class LivechatElement extends LitElement {
|
|
protected override createRenderRoot = (): Element | ShadowRoot => {
|
|
return this
|
|
}
|
|
}
|