Interface Rule

A rule that may be attached to any UI schema element.

interface Rule {
    condition: Condition;
    effect: RuleEffect;
}

Properties

Properties

condition: Condition

The condition of the rule that must evaluate to true in order to trigger the effect.

effect: RuleEffect

The effect of the rule

Generated using TypeDoc