ontotext-reusable-ui-components
Version:
Unified reusable UI components designed for the Ontotext ecosystem.
12 lines (11 loc) • 337 B
TypeScript
import { SelectionColumn } from './selection-column';
/**
* Selection column groups
*
* @param {string} label - the label of the group of columns
* @param {SelectionColumn[]} columns - an array of columns that belong to the group
*/
export declare type SelectionColumnGroup = {
label: string;
columns: SelectionColumn[];
};