UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components

22 lines (21 loc) 572 B
import { GridApi } from "../gridApi"; import { ColumnApi } from "../columnController/columnApi"; import { IComponent } from "./iComponent"; export interface StatusPanelDef { statusPanel?: { new (): IStatusPanelComp; } | string; statusPanelFramework?: any; align?: string; key?: string; statusPanelParams?: any; } export interface IStatusPanelParams { api: GridApi; columnApi: ColumnApi; context: any; } export interface IStatusPanel { } export interface IStatusPanelComp extends IStatusPanel, IComponent<IStatusPanelParams> { }