From b3fa0cccb452233683c3f957064ebd1b4f9ba497 Mon Sep 17 00:00:00 2001 From: Paulus Schoutsen Date: Sun, 27 Mar 2022 20:33:22 -0700 Subject: [PATCH] Add variables to automation trigger type --- src/data/automation.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/data/automation.ts b/src/data/automation.ts index f85a387210..87b0f9c828 100644 --- a/src/data/automation.ts +++ b/src/data/automation.ts @@ -62,6 +62,7 @@ export interface ContextConstraint { export interface BaseTrigger { platform: string; id?: string; + variables?: Record; } export interface StateTrigger extends BaseTrigger {