The shape of the condition that is used in DemosWork.if and friends

interface ICondition {
    action: WorkStep | DemosWorkOperation;
    operator: operators;
    value_a: Condition | Operand;
    value_b: Condition | Operand;
}

Hierarchy

  • BaseCondition
    • ICondition

Implemented by

Properties

operator: operators
value_a: Condition | Operand
value_b: Condition | Operand