extra-map-card
Version:
Lovelace custom map card for Home Assistant
23 lines (22 loc) • 602 B
TypeScript
import { HomeAssistant } from '@types';
import { LitElement } from 'lit';
declare class EmcEntityMarker extends LitElement {
hass: HomeAssistant;
entityId?: string;
entityName?: string;
entityUnit?: string;
entityPicture?: string;
entityColor?: string;
showIcon: boolean;
useMoreInfo: boolean;
entityIcon?: string;
protected render(): import("lit-html").TemplateResult<1>;
private _badgeTap;
static styles: import("lit").CSSResult;
}
declare global {
interface HTMLElementTagNameMap {
'emc-entity-marker': EmcEntityMarker;
}
}
export {};