@oneblink/sdk-core
    Preparing search index...

    Type Alias ConditionalPredicateNumeric

    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

    • { compareWith?: "VALUE"; value: number }
      • OptionalcompareWith?: "VALUE"
      • value: number

        The value to compare against the predicate element

    • { compareWith: "ELEMENT"; value: string }
      • compareWith: "ELEMENT"
      • value: string

        The value to compare against the predicate element