UNPKG

ng2-pagination

Version:
19 lines (18 loc) 575 B
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; previousLabel: string; nextLabel: string; screenReaderPaginationLabel: string; screenReaderPageLabel: string; screenReaderCurrentLabel: string; pageChange: EventEmitter<number>; private _directionLinks; private _autoHide; }