2024-05-23 15:17:28 +00:00
|
|
|
// SPDX-FileCopyrightText: 2024 Mehdi Benadel <https://mehdibenadel.com>
|
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
2024-05-23 15:09:58 +00:00
|
|
|
import { LitElement } from 'lit'
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Base class for all Custom Elements.
|
|
|
|
*/
|
|
|
|
export class LivechatElement extends LitElement {
|
2024-05-23 16:35:23 +00:00
|
|
|
protected createRenderRoot = () => {
|
2024-05-23 15:09:58 +00:00
|
|
|
return this
|
|
|
|
}
|
|
|
|
}
|