UNPKG

575 BTypeScriptView Raw
1import { EventEmitter } from '@angular/core';
2/**
3 * The default pagination controls component. Actually just a default implementation of a custom template.
4 */
5export declare class PaginationControlsComponent {
6 id: string;
7 maxSize: number;
8 directionLinks: boolean;
9 autoHide: boolean;
10 previousLabel: string;
11 nextLabel: string;
12 screenReaderPaginationLabel: string;
13 screenReaderPageLabel: string;
14 screenReaderCurrentLabel: string;
15 pageChange: EventEmitter<number>;
16 private _directionLinks;
17 private _autoHide;
18}