extra-map-card
Version:
Lovelace custom map card for Home Assistant
20 lines (19 loc) • 726 B
TypeScript
import type { PropertyValues } from 'lit';
type EntityCategory = 'config' | 'diagnostic';
export interface EntityRegistryDisplayEntry {
entity_id: string;
name?: string;
icon?: string;
device_id?: string;
area_id?: string;
labels: string[];
hidden?: boolean;
entity_category?: EntityCategory;
translation_key?: string;
platform?: string;
display_precision?: number;
}
export declare function hasConfigChanged(element: any, changedProps: PropertyValues): boolean;
export declare function hasConfigOrEntityChanged(element: any, changedProps: PropertyValues): boolean;
export declare function hasConfigOrEntitiesChanged(element: any, changedProps: PropertyValues): boolean;
export {};