UNPKG

ag-grid-community

Version:

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

10 lines (9 loc) 272 B
import type { IRowNode } from './iRowNode'; export interface RowNodeTransaction<TData = any> { /** Row nodes added */ add: IRowNode<TData>[]; /** Row nodes removed */ remove: IRowNode<TData>[]; /** Row nodes updated */ update: IRowNode<TData>[]; }