libs/ngx-pfe-devtools/src/pfe/navigation/navigation-graph/model/navigation-edge.model.ts
Properties |
| config |
config:
|
Type : NavOptionConfig
|
| Optional |
| from |
from:
|
Type : string
|
| label |
label:
|
Type : string
|
| to |
to:
|
Type : string
|
| type |
type:
|
Type : NavigationEdgeType
|
import { NavOptionConfig } from '@allianz/ngx-pfe';
export enum NavigationEdgeType {
FORWARDS = 'FORWARDS',
BACKWARDS = 'BACKWARDS',
ENTRY_POINT_NAVIGATION = 'ENTRY_POINT_NAVIGATION',
ERROR_NAVIGATION = 'ERROR_NAVIGATION',
}
export interface NavigationEdgeData {
from: string;
to: string;
type: NavigationEdgeType;
label: string;
config?: NavOptionConfig;
}