参考类型

Connection

GitHub 上的源代码

The Connection type is the basic minimal description of an Edge between two nodes. The addEdge util can be used to upgrade a Connection to an Edge.

export type Connection = {
  source: string;
  target: string;
  sourceHandle: string | null;
  targetHandle: string | null;
};

字段

#source
string
此连接源自的节点 ID。
#target
string
此连接终止的节点 ID。
#sourceHandle
string | null
当不为空时,此连接源自的源节点上的句柄 ID。
#targetHandle
string | null
当不为空时,此连接终止的目标节点上的句柄 ID。