Skip to Content
💡 Legacy Notice: You're viewing Svelte Flow for Svelte 4. For the latest documentation, click here.
ReferenceTypesNodeConnection

NodeConnection

Source on GitHub 

The NodeConnection type is an extension of a basic Connection that includes the edgeId.

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

Fields

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