UNPKG

553 BTypeScriptView Raw
1// ag-grid-react v25.3.0
2import { Component } from "react";
3import { ColDef, ColGroupDef } from "ag-grid-community";
4export interface AgGridColumnProps extends ColDef {
5}
6export interface AgGridColumnGroupProps extends ColGroupDef {
7}
8export declare class AgGridColumn extends Component<AgGridColumnProps | AgGridColumnGroupProps, {}> {
9 props: any;
10 constructor(props: any);
11 render(): any;
12 static mapChildColumnDefs(children: any): any;
13 static toColDef(columnProps: any): ColDef;
14 static hasChildColumns(children: any): boolean;
15}