ontotext-reusable-ui-components
Version:
Unified reusable UI components designed for the Ontotext ecosystem.
14 lines (13 loc) • 415 B
TypeScript
import { SearchFacetModel } from './search-facet-model';
/**
* Interface defining the minimal search facet group parameters.
* Search facet groups must implement this interface in order facet's data to be processed.
*/
export interface SearchFacetGroupModel {
facetGroupName: string;
facetGroupData: SearchFacetModel[];
/**
* Array of selected facets
*/
selected: SearchFacetModel[];
}