import { GridApi } from 'ag-grid-enterprise'; import { BaseContext } from '../../types'; /** * Object returned by `AdaptableReady` event - fired when AdapTable has loaded */ export interface AdaptableReadyInfo extends BaseContext { /** * Underlying AG Grid API */ agGridApi: GridApi; }