Posos Widgets JavaScript SDK
    Preparing search index...

    Interface Range

    A set of possible values defined by a lower and/or upper bound.

    interface Range {
        high?: Quantity | null;
        low?: Quantity | null;
    }
    Index

    Properties

    Properties

    high?: Quantity | null

    The upper bound of the range (inclusive), if defined.

    low?: Quantity | null

    The lower bound of the range (inclusive), if defined.