Interface Breadcrumb<Value>

Represents a generic breadcrumb type.

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

Type Parameters

Properties

facetDisplayName: string

The display name of the underlying facet.

facetId: string

The ID of the underlying facet.

field: string

The field on which the underlying facet is configured.

type: string

The type of the underlying facet.

The list of facet values currently selected.