Interface representing an automation event

interface ESPAutomationEvent {
    check: ESPAutomationConditionOperator;
    deviceName: string;
    param: string;
    value: any;
}

Properties

deviceName: string
param: string
value: any