@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
11 lines (10 loc) • 606 B
TypeScript
import { AdaptableObject } from '../../types';
/**
* Updates IsSuspended in a list of adaptable objects
*
* @param abObjectToChange object to suspend
* @param list list of ab objects
*/
export declare function changeIsSuspendInList<AbObjectType extends AdaptableObject>(abObjectToChange: AbObjectType, list: AbObjectType[], IsSuspended: boolean): AbObjectType[];
export declare function suspendAllInList<AbObjectType extends AdaptableObject>(list: AbObjectType[]): AbObjectType[];
export declare function unsuspendAllInList<AbObjectType extends AdaptableObject>(list: AbObjectType[]): AbObjectType[];