UNPKG

1.02 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 { Component } from "../../widgets/component";
5export declare class PaginationComp extends Component {
6 private gridOptionsWrapper;
7 private eventService;
8 private paginationProxy;
9 private rowRenderer;
10 private btFirst;
11 private btPrevious;
12 private btNext;
13 private btLast;
14 private lbRecordCount;
15 private lbFirstRowOnPage;
16 private lbLastRowOnPage;
17 private eSummaryPanel;
18 private lbCurrent;
19 private lbTotal;
20 constructor();
21 private postConstruct();
22 private onPaginationChanged();
23 private setCurrentPageLabel();
24 private formatNumber(value);
25 private getTemplate();
26 private onBtNext();
27 private onBtPrevious();
28 private onBtFirst();
29 private onBtLast();
30 private enableOrDisableButtons();
31 private updateRowLabels();
32 private isZeroPagesToDisplay();
33 private setTotalLabels();
34}