| 1234567891011121314151617181920 |
- import { EventEmitter } from '@angular/core';
- /**
- * The default pagination controls component. Actually just a default implementation of a custom template.
- */
- export declare class PaginationControlsComponent {
- id: string;
- maxSize: number;
- directionLinks: boolean;
- autoHide: boolean;
- responsive: boolean;
- previousLabel: string;
- nextLabel: string;
- screenReaderPaginationLabel: string;
- screenReaderPageLabel: string;
- screenReaderCurrentLabel: string;
- pageChange: EventEmitter<number>;
- private _directionLinks;
- private _autoHide;
- private _responsive;
- }
|