HandleConnection
HandleConnection
类型是包含 edgeId
的基本 Connection 的扩展。
¥The HandleConnection
type is an extension of a basic Connection that includes the edgeId
.
export type HandleConnection = {
source: string | null;
target: string | null;
sourceHandle: string | null;
targetHandle: string | null;
edgeId: string;
};
字段
¥Fields
Name | Type |
---|---|
# source | string | null |
# target | string | null |
# sourceHandle | string | null |
# targetHandle | string | null |
# edgeId | string |
Last updated on