ConnectionMode
The ConnectionMode
enum defines the available strategies for connecting nodes. Use Strict
to only allow connections to valid handles, or Loose
to allow more flexible connections.
enum ConnectionMode {
Strict = 'strict',
Loose = 'loose',
}
Last updated on