angular-bootstrap-italia
Version:
<p align="center"> <h1 align="center">Bootstrap Italia + Angular 9</h1>
17 lines (16 loc) • 596 B
TypeScript
import { OnInit, EventEmitter, OnChanges, SimpleChanges } from '@angular/core';
import { IPagination } from './pagination.model';
export declare class TablePaginationComponent implements OnInit, OnChanges {
currentPagination: IPagination;
paginationChange: EventEmitter<any>;
pages: any[];
currentPageRound: any[];
constructor();
ngOnInit(): void;
ngOnChanges(changes: SimpleChanges): void;
setPage(page: number): void;
nextPage(): void;
previousPage(): void;
changePageSize(newPageSizeValue: number): void;
private setPageRound;
}