Type alias Edge

Edge: {
    source: string;
    target: string;
    external: boolean;
    importKinds: ImportKind[];
}

Type declaration

  • source: string
  • target: string
  • external: boolean
  • importKinds: ImportKind[]