cleaned up elementconfig type order

This commit is contained in:
Ian Richardson 2018-10-27 16:54:27 -05:00
parent bf0eb798d9
commit 5617416932

View File

@ -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 {