ad-custom-lib
Version:
This is an UI custom library based on Adminlte library with purpose for personal use, if you need a full template of Primeng please visit https://github.com/mledour/angular-admin-lte
26 lines (25 loc) • 788 B
TypeScript
import { ChangeDetectorRef, OnDestroy, OnInit } from '@angular/core';
import { Router } from '@angular/router';
import { RoutingService } from '../services/routing.service';
export declare class BreadcrumbsComponent implements OnInit, OnDestroy {
private routingService;
private changeDetectorRef;
private router;
breadcrumbs: any;
private subscription;
homeIcon: string;
/**
* @method constructor
* @param routingService [description]
* @param changeDetectorRef [description]
*/
constructor(routingService: RoutingService, changeDetectorRef: ChangeDetectorRef, router: Router);
/**
* @method ngOnInit
*/
ngOnInit(): void;
/**
* @method ngOnDestroy
*/
ngOnDestroy(): void;
}