projects/rebirth-ng/src/lib/breadcrumbs/breadcrumbs.model.ts
Properties |
data |
data:
|
Type : any
|
Optional |
handle |
handle:
|
Type : function
|
Optional |
icon |
icon:
|
Type : string
|
Optional |
queryParams |
queryParams:
|
Type : any
|
Optional |
router |
router:
|
Type : any[]
|
Optional |
target |
target:
|
Type : "_blank" | "_self" | "_parent" | "_top" | any
|
Optional |
text |
text:
|
Type : string
|
url |
url:
|
Type : string
|
Optional |
export interface Breadcrumb {
text: string;
icon?: string;
url?: string;
router?: any[];
queryParams?: any;
target?: '_blank' | '_self' | '_parent' | '_top' | any;
data?: any;
handle?: (item: Breadcrumb) => void;
}