ConditionalPredicateNumeric: ConditionalPredicateBase & {
    operator:
        | "==="
        | "!=="
        | ">"
        | ">="
        | "<"
        | "<=";
    type: "NUMERIC";
} & ({
    compareWith?: "VALUE";
    value: number;
} | {
    compareWith: "ELEMENT";
    value: string;
})

Type declaration

  • operator:
        | "==="
        | "!=="
        | ">"
        | ">="
        | "<"
        | "<="

    How the predicate element's value will be compared to value

  • type: "NUMERIC"

    Evaluate against a numeric type element or an element with options