diff --git a/src/panels/lovelace/cards/types.ts b/src/panels/lovelace/cards/types.ts index 8fcf28ab4e42..374aea09ae19 100644 --- a/src/panels/lovelace/cards/types.ts +++ b/src/panels/lovelace/cards/types.ts @@ -487,61 +487,6 @@ export interface WeatherForecastCardConfig extends LovelaceCardConfig { double_tap_action?: ActionConfig; } -export interface EnergyFlowCardConfig extends LovelaceCardConfig { - type: string; - name?: string; - show_header_toggle?: boolean; - - show_warning?: boolean; - show_error?: boolean; - test_gui?: boolean; - show_w_not_kw?: any; - hide_inactive_lines?: boolean; - threshold_in_k?: number; - energy_flow_diagramm?: boolean; - energy_flow_diagramm_lines_factor?: number; - change_house_bubble_color_with_flow?: boolean; - - grid_icon?: string; - generation_icon?: string; - house_icon?: string; - battery_icon?: string; - appliance1_icon?: string; - appliance2_icon?: string; - - icon_entities?: Map; - line_entities?: Map; - - house_entity?: string; - battery_entity?: string; - generation_entity?: string; - grid_entity?: string; - - grid_to_house_entity?: string; - grid_to_battery_entity?: string; - - generation_to_grid_entity?: string; - generation_to_battery_entity?: string; - generation_to_house_entity?: string; - - battery_to_house_entity?: string; - battery_to_grid_entity?: string; - - grid_extra_entity?: string; - generation_extra_entity?: string; - house_extra_entity?: string; - battery_extra_entity?: string; - - appliance1_consumption_entity?: string; - appliance1_extra_entity?: string; - appliance2_consumption_entity?: string; - appliance2_extra_entity?: string; - - tap_action?: ActionConfig; - hold_action?: ActionConfig; - double_tap_action?: ActionConfig; -} - export interface TileCardConfig extends LovelaceCardConfig { entity: string; name?: string;