UNPKG

@adaptabletools/adaptable

Version:

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

10 lines (9 loc) 257 B
export interface BatchUpdateQueue { (fn: () => void): void; commit: (lastFn?: () => void) => void; } declare const BatchUpdate: (fn?: () => void) => { (fn: () => void): void; commit(lastFn?: () => void): void; }; export default BatchUpdate;