UNPKG

1.39 kBTypeScriptView Raw
1// Type definitions for ag-grid v18.1.2
2// Project: http://www.ag-grid.com/
3// Definitions by: Niall Crosby <https://github.com/ag-grid/>
4import { LoggerFactory } from "./logger";
5import { Component } from "./widgets/component";
6export declare class GridCore extends Component {
7 private static TEMPLATE_NORMAL;
8 private static TEMPLATE_ENTERPRISE;
9 private enterprise;
10 private gridOptions;
11 private gridOptionsWrapper;
12 private rowModel;
13 private frameworkFactory;
14 private columnController;
15 private rowRenderer;
16 private filterManager;
17 private eventService;
18 private eGridDiv;
19 private $scope;
20 private quickFilterOnScope;
21 private popupService;
22 private focusedCellController;
23 private context;
24 loggerFactory: LoggerFactory;
25 private columnApi;
26 private gridApi;
27 private rowGroupCompFactory;
28 private pivotCompFactory;
29 private statusBar;
30 private gridPanel;
31 private toolPanelComp;
32 private eRootWrapperBody;
33 private finished;
34 private doingVirtualPaging;
35 private logger;
36 constructor();
37 init(): void;
38 private onGridSizeChanged();
39 getPreferredWidth(): number;
40 private addRtlSupport();
41 getRootGui(): HTMLElement;
42 showToolPanel(show: any): void;
43 isToolPanelShowing(): boolean;
44 destroy(): void;
45 ensureNodeVisible(comparator: any, position?: string): void;
46}