libs/ngx-pfe-devtools/src/pfe/navigation/navigation-graph/model/navigation-edge.model.ts
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;
}

results matching ""

    No results matching ""