mirror of
https://github.com/GeorgeSG/lovelace-time-picker-card.git
synced 2026-09-06 02:18:44 +00:00
18 lines
374 B
TypeScript
18 lines
374 B
TypeScript
import { LovelaceCard } from 'custom-card-helpers';
|
|
import { customElement, html, LitElement, TemplateResult } from 'lit-element';
|
|
|
|
@customElement('hui-error-card')
|
|
export class HuiErrorCard extends LitElement implements LovelaceCard {
|
|
setConfig(): void {
|
|
return;
|
|
}
|
|
|
|
render(): TemplateResult {
|
|
return html``;
|
|
}
|
|
|
|
getCardSize(): number {
|
|
return 1;
|
|
}
|
|
}
|