Connection
Connection
类型是两个节点之间 Edge
的基本最小描述。addEdge
实用程序可用于将 Connection
升级到 Edge
。
¥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;
};
字段
¥Fields
Last updated on