ag-grid-react
Version:
ag-Grid React Component
21 lines (20 loc) • 754 B
TypeScript
// ag-grid-react v23.0.0
import { Component } from "react";
import * as AgGrid from "ag-grid-community";
import { ColDef, ColGroupDef } from "ag-grid-community";
export interface AgGridColumnProps extends ColDef {
}
export interface AgGridColumnGroupProps extends ColGroupDef {
}
export declare class AgGridColumn extends Component<AgGridColumnProps | AgGridColumnGroupProps, {}> {
props: any;
state: any;
constructor(props: any, state: any);
render(): any;
static mapChildColumnDefs(columnProps: any): AgGrid.ColDef[];
static toColDef(columnProps: any): ColDef;
static hasChildColumns(columnProps: any): boolean;
private static getChildColDefs;
private static createColDefFromGridColumn;
private static assign;
}