Type Alias ConditionalPredicateNumeric
ConditionalPredicateNumeric: ConditionalPredicateBase & { operator: | "===" | "!==" | ">" | ">=" | "<" | "<="; type: "NUMERIC"; } & ({ compareWith?: "VALUE"; value: number; } | { compareWith: "ELEMENT"; value: string; }) Type declaration
operator:
| "==="
| "!=="
| ">"
| ">="
| "<"
| "<="
type: "NUMERIC"
How the predicate element's value will be compared to
value