Represents a generic breadcrumb type.

This can be a FacetBreadcrumb, NumericFacetBreadcrumb, DateFacetBreadcrumb, or CategoryFacetBreadcrumb.

interface Breadcrumb<T extends BaseFacetValue> {
    facetId: string;
    field: string;
    values: BreadcrumbValue<T>[];
}

Type Parameters

  • T extends BaseFacetValue

Hierarchy (View Summary)

Properties

Properties

facetId: string

The ID of the underlying facet.

field: string

The field on which the underlying facet is configured.

values: BreadcrumbValue<T>[]

The list of facet values currently selected.