iStatusPanel.d.ts 572 B

123456789101112131415161718192021
  1. import { GridApi } from "../gridApi";
  2. import { ColumnApi } from "../columnController/columnApi";
  3. import { IComponent } from "./iComponent";
  4. export interface StatusPanelDef {
  5. statusPanel?: {
  6. new (): IStatusPanelComp;
  7. } | string;
  8. statusPanelFramework?: any;
  9. align?: string;
  10. key?: string;
  11. statusPanelParams?: any;
  12. }
  13. export interface IStatusPanelParams {
  14. api: GridApi;
  15. columnApi: ColumnApi;
  16. context: any;
  17. }
  18. export interface IStatusPanel {
  19. }
  20. export interface IStatusPanelComp extends IStatusPanel, IComponent<IStatusPanelParams> {
  21. }