Skip to Content
πŸ“£ We just released Svelte Flow 1.0 Alpha β€” try it out and give us your feedback!
ReferenceTypesConnection

Connection

The Connection type is the basic minimal description of an Edge between two nodes.

export type Connection = { source: string | null; target: string | null; sourceHandle: string | null; targetHandle: string | null; };

Fields

#source
string | null
#target
string | null
#sourceHandle
string | null
#targetHandle
string | null
Last updated on