@adaptabletools/adaptable
Version:
Powerful data-agnostic HTML5 AG Grid extension which provides advanced, cutting-edge functionality to meet all DataGrid requirements
12 lines (11 loc) • 326 B
TypeScript
import { GridApi } from 'ag-grid-enterprise';
import { BaseContext } from '../../types';
/**
* Object returned by `AdaptableReady` event - fired when AdapTable has loaded
*/
export interface AdaptableReadyInfo<TData = any> extends BaseContext {
/**
* Underlying AG Grid API
*/
agGridApi: GridApi<TData>;
}