UNPKG

@adaptabletools/adaptable

Version:

Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements

20 lines (19 loc) 422 B
import { IRowNode } from 'ag-grid-enterprise'; import { BaseContext } from '../../types'; /** * Object returned by the `DataImported` event */ export interface DataImportedInfo extends BaseContext { /** * Raw data that was imported */ importData: any[]; /** * Rows that were added */ addedRows: IRowNode[]; /** * Rows that were updated */ updatedRows: IRowNode[]; }