// Type definitions for @dyna-grid/core v1.1.4 // Project: // Definitions by: zhangkun <> import { IStatusPanelComp } from "./iStatusPanel"; export interface IStatusBarService { registerStatusPanel(key: string, component: IStatusPanelComp): void; getStatusPanel(key: string): IStatusPanelComp; }