UNPKG

angular-admin-lte

Version:

Admin-lte implémentation for Angular 4+

23 lines (22 loc) • 656 B
import { OnInit, OnDestroy, ChangeDetectorRef } from "@angular/core"; import { RoutingService } from '../routing.service'; export declare class BreadcrumbsComponent implements OnInit, OnDestroy { private routingService; private changeDetectorRef; breadcrumbs: any; private subscription; homeIcon: string; /** * @method constructor * @param {RoutingService} private routingService [description] */ constructor(routingService: RoutingService, changeDetectorRef: ChangeDetectorRef); /** * @method ngOnInit */ ngOnInit(): void; /** * @method ngOnDestroy */ ngOnDestroy(): void; }