ohctechv3/.svn/pristine/64/645cf5ec89e91fee59d57bcc8b45ba896edfc601.svn-base
2024-10-28 15:03:36 +05:30

18 lines
753 B
Plaintext

import React, { Component } from 'react';
import { AgGridReactProps, AgReactUiProps } from './shared/interfaces';
import { ColumnApi, GridApi } from 'ag-grid-community';
export declare class AgGridReact<TData = any> extends Component<AgGridReactProps<TData> | AgReactUiProps<TData>, {}> {
/** Grid Api available after onGridReady event has fired. */
api: GridApi<TData>;
/**
* @deprecated v31 - The `columnApi` has been deprecated and all the methods are now present of the `api`.
* Please use the `api` instead.
*/
columnApi: ColumnApi;
private apiListeners;
registerApiListener(listener: (api: GridApi) => void): void;
private setGridApi;
componentWillUnmount(): void;
render(): React.JSX.Element;
}