From 5617416932de3904cd9fb5ef4daabd1f0faf9457 Mon Sep 17 00:00:00 2001 From: Ian Richardson Date: Sat, 27 Oct 2018 16:54:27 -0500 Subject: [PATCH] cleaned up elementconfig type order --- src/panels/lovelace/elements/types.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 {