UNPKG

ruch

Version:

Revolutionary React TypeScript CLI with hexagonal architecture & AI-powered development assistance. Create maintainable, scalable applications with domain-driven design and integrated AI tooling.

16 lines 436 B
import React from 'react'; import { EdgeProps } from 'reactflow'; interface DependencyEdgeData { dependencyType: 'direct-import' | 'indirect-import'; metadata: { path: string; line?: number; }; isSelected: boolean; settings: { edgeThickness: number; }; } export declare const DependencyEdge: React.FC<EdgeProps<DependencyEdgeData>>; export {}; //# sourceMappingURL=DependencyEdge.d.ts.map