UNPKG

ontotext-reusable-ui-components

Version:

Unified reusable UI components designed for the Ontotext ecosystem.

22 lines (21 loc) 426 B
/** * Interface that determines the minimum properties of a single facet. */ export interface SearchFacetModel { /** * Display label */ label: string; /** * Additional data of the facet. Can be used for further processing of the facet. */ facetData?: any; /** * Found results count */ count: number; /** * Facet selected status */ selected: boolean; }