libs/ngx-pfe-devtools/src/pfe/navigation/navigation-graph/model/navigation-node.model.ts
Properties |
| id |
id:
|
Type : string
|
| label |
label:
|
Type : string
|
| tooltip |
tooltip:
|
Type : string
|
| Optional |
| type |
type:
|
Type : NavigationNodeType
|
export enum NavigationNodeType {
PAGE = 'PAGE',
META_PAGE = 'META_PAGE',
EXTERNAL_PAGE = 'EXTERNAL_PAGE',
NAVIGATION_NODE = 'NAVIGATION_NODE',
ENTRY_POINT = 'ENTRY_POINT',
ERROR = 'ERROR',
}
export interface NavigationNodeData {
id: string;
type: NavigationNodeType;
label: string;
tooltip?: string;
}