angular-admin-lte-teliqo
Version:
npm# angular-admin-lte
24 lines (23 loc) • 685 B
TypeScript
import { OnInit, OnDestroy, ChangeDetectorRef } from '@angular/core';
import { RoutingService } from '../services/routing.service';
export declare class BreadcrumbsComponent implements OnInit, OnDestroy {
private routingService;
private changeDetectorRef;
breadcrumbs: any;
private subscription;
homeIcon: string;
/**
* @method constructor
* @param routingService [description]
* @param changeDetectorRef [description]
*/
constructor(routingService: RoutingService, changeDetectorRef: ChangeDetectorRef);
/**
* @method ngOnInit
*/
ngOnInit(): void;
/**
* @method ngOnDestroy
*/
ngOnDestroy(): void;
}