TransportKind
type TransportKind = "broadcast-channel" | "storage" | "memory" | "none" | string & object;Which mechanism a transport actually uses. Worth surfacing, because they are
not equivalent: storage is a fallback with lower fidelity than
broadcast-channel, and none means nothing is being shared at all.