src/ui-shell/header/header-navigation-items.interface.ts
Properties |
|
content |
content:
|
Type : string
|
Optional |
href |
href:
|
Type : string
|
Optional |
route |
route:
|
Type : any[]
|
Optional |
routeExtras |
routeExtras:
|
Type : any[]
|
Optional |
export interface NavigationItem {
type: "menu" | "item";
title?: string;
href?: string;
trigger?: "click" | "mouseover";
route?: any[];
routeExtras?: any[];
content?: string;
isCurrentPage?: boolean;
menuItems?: HeaderItemInterface[];
}
export interface HeaderItemInterface {
href?: string;
route?: any[];
routeExtras?: any[];
content?: string;
}