Interface representing a weather event

interface ESPWeatherEvent {
    check: ESPAutomationConditionOperator;
    param: ESPWeatherParameter;
    value: string | number;
}

Properties

Properties

value: string | number