Files
advanced-camera-card/src/types.ts
T
2019-11-05 22:35:12 -06:00

15 lines
378 B
TypeScript

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