ag-grid-community
Version:
Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components
13 lines (12 loc) • 399 B
TypeScript
import { IToolPanel } from "./iToolPanel";
export interface ISideBar {
refresh(): void;
setDisplayed(show: boolean): void;
setSideBarPosition(position?: 'left' | 'right'): void;
isToolPanelShowing(): boolean;
openToolPanel(key: string): void;
getToolPanelInstance(key: string): IToolPanel | undefined;
close(): void;
reset(): void;
openedItem(): string | null;
}