import { Grouping } from "slickgrid"; /** @description Describes table's grouping state * @property isGrouped * Undefined: table has no groups; * False: table ungrouped; * True: table grouped * */ export interface IGrouping { isGrouped?: boolean; groups?: Grouping[]; }