@metadev/lux
Version:
Lux: Library with User Interface components for Angular.
23 lines (22 loc) • 803 B
TypeScript
import { OnInit, OnDestroy } from '@angular/core';
import { Router, ActivatedRoute } from '@angular/router';
import * as i0 from "@angular/core";
export interface BreadcrumbItem {
label: string;
url: string;
}
export declare class LuxBreadcrumbComponent implements OnInit, OnDestroy {
private route;
private activedRoute;
breadcrumbs: BreadcrumbItem[];
private subs;
imagePath: string;
constructor(route: Router, activedRoute: ActivatedRoute);
ngOnInit(): void;
ngOnDestroy(): void;
private addBreadcrumbs;
private getUrl;
private getLabel;
static ɵfac: i0.ɵɵFactoryDeclaration<LuxBreadcrumbComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<LuxBreadcrumbComponent, "lux-breadcrumb", never, {}, {}, never, never, false, never>;
}