ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue
7 lines (6 loc) • 332 B
TypeScript
import type { ServerSideRowGroupSelectionState, ServerSideRowSelectionState } from './selectionState';
export interface IServerSideSelectionState extends ServerSideRowSelectionState {
}
export interface IServerSideGroupSelectionState extends ServerSideRowGroupSelectionState {
toggledNodes?: IServerSideGroupSelectionState[];
}