Connection
Connection
型は、2 つのノード間の Edge
を最小限に記述した基本的な型です。
export type Connection = {
source: string | null;
target: string | null;
sourceHandle: string | null;
targetHandle: string | null;
};
フィールド
名前 | 型 |
---|---|
# source | 文字列 | null |
# target | 文字列 | null |
# sourceHandle | 文字列 | null |
# targetHandle | 文字列 | null |