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.
15 lines • 410 B
TypeScript
import React from 'react';
import { NodeProps } from 'reactflow';
interface DomainNodeData {
label: string;
domainType: 'core' | 'feature' | 'shared';
isSelected: boolean;
isInCycle?: boolean;
settings: {
showLabels: boolean;
nodeSize: number;
};
}
export declare const DomainNode: React.FC<NodeProps<DomainNodeData>>;
export {};
//# sourceMappingURL=DomainNode.d.ts.map