UNPKG

@adaptabletools/adaptable

Version:

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

22 lines (21 loc) 476 B
/** * Object passed into Adaptable Grid Api data management methods */ export interface DataUpdateConfig { /** * Whether data should be updated asynchronously */ runAsync?: boolean; /** * Whether to flush async updates */ flushAsync?: boolean; /** * Callback function invoked when a batch successfully updates */ callback?: (res: any) => void; /** * Index where to add new rows */ addIndex?: number; }