diff --git a/src/panels/lovelace/elements/types.ts b/src/panels/lovelace/elements/types.ts index 71407adf19..105ac3d2d9 100644 --- a/src/panels/lovelace/elements/types.ts +++ b/src/panels/lovelace/elements/types.ts @@ -2,14 +2,14 @@ import { HomeAssistant } from "../../../types"; export interface LovelaceElementConfig { type: string; - entity?: string; style: object; - tap_action?: string; + entity?: string; + hold_action?: string; navigation_path?: string; service?: string; - title?: string; - hold_action?: string; service_data?: object; + tap_action?: string; + title?: string; } export interface LovelaceElement extends HTMLElement {