Skip to Content
🚨 New Example: Handling Node Collisions!

OnConnect

Source on GitHub 

The OnConnect type is a callback function that is called when a new connection is created between nodes. It receives a connection object containing the source and target node IDs and their respective handle IDs.

type OnConnect = (connection: Connection) => void;
Parameters:
NameTypeDefault
connectionConnection
Returns:
void
Last updated on