TcpMode type

The role a TCP node takes: "caller" connects out to the remote host/port, "listener" binds the host/port and accepts an incoming connection.

Signature:

export type TcpMode = "caller" | "listener";