UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

15 lines (14 loc) 443 B
import { IComponent } from "./iComponent"; import { AgGridCommon } from "./iCommon"; export interface StatusPanelDef { statusPanel?: any; align?: string; key?: string; statusPanelParams?: any; } export interface IStatusPanelParams<TData = any, TContext = any> extends AgGridCommon<TData, TContext> { } export interface IStatusPanel { } export interface IStatusPanelComp extends IStatusPanel, IComponent<IStatusPanelParams> { }