Type alias ConditionalPredicateNumeric

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