@vicoders/angular
Version:
- [Vicoders Angular Common Module](#vicoders-angular-common-module) - [Install](#install) - [How to use](#how-to-use) - [Pipes](#pipes) - [hasItem](#hasitem) - [isArray](#isarray) - [length](#length) - [orderBy](#orderby)
17 lines (16 loc) • 518 B
TypeScript
import { Router, ActivatedRoute } from '@angular/router';
import { OnInit, OnDestroy } from '@angular/core';
import { Subscription } from 'rxjs';
export declare class PerPageComponent implements OnInit, OnDestroy {
private route;
private activatedRoute;
navigationSubscription: Subscription;
limits: Number[];
perPage?: Number;
name?: any;
page?: any;
constructor(route: Router, activatedRoute: ActivatedRoute);
ngOnInit(): void;
ngOnDestroy(): void;
updateLimit(): void;
}