UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

10 lines (9 loc) 495 B
import type { RowNode } from '../entities/rowNode'; import type { ChangedPath } from '../utils/changedPath'; import type { Column } from './iColumn'; import type { IRowNode } from './iRowNode'; export interface IGroupHideOpenParentsService { updateGroupDataForHideOpenParents(changedPath?: ChangedPath): void; pullDownGroupDataForHideOpenParents(rowNodes: RowNode[] | null, clearOperation: boolean): void; isShowingValueForOpenedParent(rowNode: IRowNode, column: Column): boolean; }