UNPKG

ag-grid

Version:

Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components

29 lines (28 loc) 868 B
// Type definitions for ag-grid v17.0.0 // Project: http://www.ag-grid.com/ // Definitions by: Niall Crosby <https://github.com/ag-grid/> export interface SetScrollsVisibleParams { vBody: boolean; hBody: boolean; vPinnedLeft: boolean; vPinnedRight: boolean; } export declare class ScrollVisibleService { private eventService; private columnController; private columnApi; private gridApi; private vBody; private hBody; private vPinnedLeft; private vPinnedRight; setScrollsVisible(params: SetScrollsVisibleParams): void; isVBodyShowing(): boolean; isHBodyShowing(): boolean; isVPinnedLeftShowing(): boolean; isVPinnedRightShowing(): boolean; getPinnedLeftWidth(): number; getPinnedLeftWithScrollWidth(): number; getPinnedRightWidth(): number; getPinnedRightWithScrollWidth(): number; }