Skip to Content
💡 Legacy Notice: You're viewing Svelte Flow for Svelte 4. For the latest documentation, click here.
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