Skip to main content

Edge

Edge 구조

interface Edge {
id: string;
iid: number;
source: string;
target: string;
type: string;
animated: boolean;
parentNode?: string;
sourceHandle: string;
targetHandle: string;
style: {
stroke: string;
};
}