UNPKG

ag-grid-community

Version:

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

11 lines (10 loc) 271 B
export interface RowDataTransaction<TData = any> { /** Index to add rows */ addIndex?: number | null; /** Rows to add */ add?: TData[] | null; /** Rows to remove */ remove?: TData[] | null; /** Rows to update */ update?: TData[] | null; }