Skip to content

Commit

Permalink
Remove unused type (#20429)
Browse files Browse the repository at this point in the history
  • Loading branch information
bramkragten authored Apr 5, 2024
1 parent c4af3d1 commit dd082c2
Showing 1 changed file with 0 additions and 55 deletions.
55 changes: 0 additions & 55 deletions src/panels/lovelace/cards/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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<string, string>;
line_entities?: Map<string, string>;

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;
Expand Down

0 comments on commit dd082c2

Please sign in to comment.