A collection of transition rules.

interface WorkflowRules {
    conditionsTree?: WorkflowCondition;
    postFunctions?: WorkflowTransitionRule[];
    validators?: WorkflowTransitionRule[];
}

Properties

conditionsTree?: WorkflowCondition

The workflow transition rule conditions tree.

postFunctions?: WorkflowTransitionRule[]

The workflow post functions.

validators?: WorkflowTransitionRule[]

The workflow validators.