1 | import { Reflection } from '../../models/reflections/abstract';
|
2 | export declare class NavigationItem {
|
3 | title: string;
|
4 | url: string;
|
5 | dedicatedUrls?: string[];
|
6 | parent?: NavigationItem;
|
7 | children?: NavigationItem[];
|
8 | cssClasses: string;
|
9 | isLabel?: boolean;
|
10 | isVisible?: boolean;
|
11 | isCurrent?: boolean;
|
12 | isGlobals?: boolean;
|
13 | isInPath?: boolean;
|
14 | reflection?: Reflection;
|
15 | constructor(title?: string, url?: string, parent?: NavigationItem, cssClasses?: string, reflection?: Reflection);
|
16 | static create(reflection: Reflection, parent?: NavigationItem, useShortNames?: boolean): NavigationItem;
|
17 | }
|