ConnectionMode
The ConnectionMode
enum provides two options for connection behavior in React Flow:
Strict
: Connections can only be made starting from a source handle and ending on a target handleLoose
: Connections can be made between any handles, regardless of type
enum ConnectionMode {
Strict = 'strict',
Loose = 'loose',
}
Last updated on