(
connections: Array<{
source: string
target: string
sourceHandle?: string
targetHandle?: string
}>
)
| 62 | * ``` |
| 63 | */ |
| 64 | export function createEdges( |
| 65 | connections: Array<{ |
| 66 | source: string |
| 67 | target: string |
| 68 | sourceHandle?: string |
| 69 | targetHandle?: string |
| 70 | }> |
| 71 | ): any[] { |
| 72 | return connections.map((conn) => createEdge(conn)) |
| 73 | } |
| 74 | |
| 75 | /** |
| 76 | * Creates a linear chain of edges connecting blocks in order. |
nothing calls this directly
no test coverage detected