extra-map-card
Version:
Lovelace custom map card for Home Assistant
10 lines (9 loc) • 363 B
TypeScript
import type { HassEntityAttributeBase, HassEntityBase } from "home-assistant-js-websocket";
interface ImageEntityAttributes extends HassEntityAttributeBase {
access_token: string;
}
export interface ImageEntity extends HassEntityBase {
attributes: ImageEntityAttributes;
}
export declare const computeImageUrl: (entity: ImageEntity) => string;
export {};