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

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

Hierarchy

  • BaseCondition
    • ICondition

Implemented by

Properties

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