Files
advanced-camera-card/src/types.ts
T
Georgi Gardev 7f44c5cc9a Add warning and error methods. Refactor types (#26)
* Add warning and error methods. Refactor types

* Remove obsolete CSS style
2020-05-21 09:42:42 -05:00

15 lines
425 B
TypeScript

import { ActionConfig, LovelaceCardConfig } from 'custom-card-helpers';
// TODO Add your configuration elements here for type-checking
export interface BoilerplateCardConfig extends LovelaceCardConfig {
type: string;
name?: string;
show_warning?: boolean;
show_error?: boolean;
test_gui?: boolean;
entity?: string;
tap_action?: ActionConfig;
hold_action?: ActionConfig;
double_tap_action?: ActionConfig;
}