edge.ts 138 B

123456
  1. export interface WorkflowEdgeSchema {
  2. sourceNodeID: string;
  3. targetNodeID: string;
  4. sourcePortID?: string;
  5. targetPortID?: string;
  6. }