@asi-ngtools/lib
Version:
This project is a little components library, simple to use, which will help you to simplify your project.
19 lines (18 loc) • 605 B
TypeScript
import { EventEmitter } from '@angular/core';
export declare class AsiPaginationComponent {
private static TRI_POINT;
nbElements: number;
nbVisibleElements: number;
selectedPagination: number;
onPaginationChanged: EventEmitter<number>;
onFirstPage(): boolean;
onLastPage(): boolean;
isCurrentPagination(pagination: number): boolean;
changePagination(pagination: any): void;
previousPage(): void;
nextPage(): void;
goLastPage(): void;
goFirstPage(): void;
getPaginationItems(): any[];
createNumbersTab(min: number, max: number): Array<number>;
}