interface Facet {
id: number;
type: FacetType;
title: string;
values?: Array<FacetValue>;
field?: string;
collapsible: boolean;
collapsed?: boolean;
range?: DateFacetRange | NumericFacetRange;
searchable?: boolean;
searchWithin?: string;
tooltip?: string;
truncateThreshold?: number;
visible: boolean;
} |