UNPKG

air-lib

Version:

This is Air's angular component library

25 lines (24 loc) 755 B
import { OnInit } from '@angular/core'; import { ActivatedRoute } from '@angular/router'; import { PagingEvent } from '../../entities/paging-event'; export declare class DetailsPagingComponent implements OnInit { private route; displayReturnBackUrl: boolean; itemsOnPage: number; context: string; isVisible: boolean; links: any[]; options: PagingEvent; constructor(route: ActivatedRoute); ngOnInit(): void; setOptions(): void; init(options: PagingEvent): void; readonly lastIndex: number; first(): void; previous(): void; goTo(index: number): void; next(): void; last(): void; go(index: number): void; getLinks(current: number, last: number): string[]; }