UNPKG

ag-grid-community

Version:

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

10 lines (9 loc) 238 B
import { RowNode } from "../entities/rowNode"; export interface RowNodeTransaction { /** Row nodes added */ add: RowNode[]; /** Row nodes removed */ remove: RowNode[]; /** Row nodes updated */ update: RowNode[]; }