UNPKG

ag-grid-enterprise

Version:

ag-Grid Enterprise Features

33 lines 1.07 kB
// ag-grid-enterprise v19.1.4 import { RowNode, Component, GridOptions, ICellRendererParams } from "ag-grid-community"; export declare class DetailCellRenderer extends Component { private static TEMPLATE; private eDetailGrid; private gridOptionsWrapper; private environment; private detailGridOptions; private masterGridApi; private rowId; init(params: IDetailCellRendererParams): void; private addThemeToDetailGrid; private registerDetailWithMaster; private selectAndSetTemplate; private createDetailsGrid; private loadRowData; private setRowData; } export interface IDetailCellRendererParams extends ICellRendererParams { detailGridOptions: GridOptions; getDetailRowData: GetDetailRowData; agGridReact: any; frameworkComponentWrapper: any; } export interface GetDetailRowData { (params: GetDetailRowDataParams): void; } export interface GetDetailRowDataParams { node: RowNode; data: any; successCallback(rowData: any[]): void; } //# sourceMappingURL=detailCellRenderer.d.ts.map