Add UI for the script and automation modes (#6367)

This commit is contained in:
Bram Kragten
2020-07-13 10:52:37 +02:00
committed by GitHub
parent bd9b72fb22
commit 352214ba0a
6 changed files with 187 additions and 6 deletions

View File

@@ -16,6 +16,8 @@ export interface ScriptEntity extends HassEntityBase {
export interface ScriptConfig {
alias: string;
sequence: Action[];
mode?: "single" | "restart" | "queued" | "parallel";
max?: number;
}
export interface EventAction {