Type Alias CategoryFacetState

CategoryFacetState: Omit<CoreCommerceFacetState<CategoryFacetValue>, "type"> & {
    activeValue?: CategoryFacetValue;
    canShowLessValues: boolean;
    canShowMoreValues: boolean;
    facetSearch: CategoryFacetSearchState;
    hasActiveValues: boolean;
    selectedValueAncestry?: CategoryFacetValue[];
    type: "hierarchical";
}

The state of the CategoryFacet sub-controller.