The options defining a value to display in a NumericFacet.

interface NumericRangeRequest {
    end: number;
    endInclusive: boolean;
    start: number;
    state: FacetValueState;
}

Properties

end: number

The end value of the range.

endInclusive: boolean

Whether to include the end value in the range.

start: number

The start value of the range.

The current facet value state.