ag-grid-enterprise
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
13 lines (12 loc) • 327 B
TypeScript
import type { RowNode } from 'ag-grid-community';
/**
* This is the type of any row processed by the GroupStrategy.
*
* GroupStrategy can modify:
* - allLeafChildren
* - childrenAfterGroup
*/
export interface GroupRow extends RowNode {
allLeafChildren: GroupRow[] | null;
childrenAfterGroup: GroupRow[] | null;
}