Interface NumericFacetActionCreators

The numeric facet action creators.

interface NumericFacetActionCreators {
    toggleExcludeNumericFacetValue(payload: ToggleSelectNumericFacetValueActionCreatorPayload): {
        payload: ToggleSelectNumericFacetValueActionCreatorPayload;
        type: string;
    };
    toggleSelectNumericFacetValue(payload: ToggleSelectNumericFacetValueActionCreatorPayload): {
        payload: ToggleSelectNumericFacetValueActionCreatorPayload;
        type: string;
    };
    updateNumericFacetValues(payload: UpdateNumericFacetValuesActionCreatorPayload): {
        payload: UpdateNumericFacetValuesActionCreatorPayload;
        type: string;
    };
}

Methods