ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
12 lines (11 loc) • 398 B
TypeScript
export interface ServerSideRowSelectionState {
/** Whether the majority of rows are selected or not */
selectAll: boolean;
/** All rows that have the opposite selection state to `selectAll` */
toggledNodes: string[];
}
export interface ServerSideRowGroupSelectionState {
nodeId?: string;
selectAllChildren?: boolean;
toggledNodes?: ServerSideRowGroupSelectionState[];
}