ontotext-reusable-ui-components
Version:
Unified reusable UI components designed for the Ontotext ecosystem.
13 lines (12 loc) • 308 B
TypeScript
/**
* Used for emitting selection events
*
* @param {string} name - name of the facet group
* @param {any} selected - selected options
* @param {number} count - total count for selected options
*/
export declare type SearchFacetSelection = {
name: string;
selected: any;
count?: number;
};