@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) • 320 B
TypeScript
import { AdaptableObject } from './AdaptableObject';
/**
* Interface that extends Adaptable Object for those config items that can be suspended at run-time
*/
export interface SuspendableObject extends AdaptableObject {
/**
* Suspends (i.e. turns off) an Adaptable Object
*/
IsSuspended?: boolean;
}