custom-card-helpers

This commit is contained in:
Ian Richardson
2019-05-06 18:05:35 -05:00
parent 9e63c27066
commit 0745d2f4fb
11 changed files with 2640 additions and 103 deletions
+12
View File
@@ -0,0 +1,12 @@
import { ActionConfig } from "custom-card-helpers";
// TODO Add your configuration elements here for type-checking
export interface BoilerplateConfig {
type: string;
name?: string;
show_warning?: boolean;
show_error?: boolean;
entity?: string;
tap_aciton?: ActionConfig;
hold_action?: ActionConfig;
}