pagination-controls.component.d.ts 607 B

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