/**
 * 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;
}
