OnConnectStart

Source on GitHub

The OnConnectStart type represents a callback function that is called when starting to create a connection between nodes. It receives the mouse or touch event and information about the source node and handle.

type OnConnectStart = (
  event: MouseEvent | TouchEvent,
  params: OnConnectStartParams,
) => void;
Parameters
  • event: MouseEvent | TouchEvent
  • params: OnConnectStartParams
Returns

void