Merge pull request #12135 from home-assistant/update-automation-type

This commit is contained in:
Zack Barett 2022-03-28 07:43:21 -05:00 committed by GitHub
commit 2648a53bbc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -62,6 +62,7 @@ export interface ContextConstraint {
export interface BaseTrigger {
platform: string;
id?: string;
variables?: Record<string, unknown>;
}
export interface StateTrigger extends BaseTrigger {