()
| 62 | * to attach so you bind to the currently-active transport. |
| 63 | */ |
| 64 | export function getEventStream(): EventStream | null { |
| 65 | const transport = getTransport() |
| 66 | const factory = transport.eventStream |
| 67 | if (!factory) return null |
| 68 | return factory.call(transport) |
| 69 | } |
| 70 | |
| 71 | /** |
| 72 | * Open a URL in the default browser (desktop) or new tab (web). |
no test coverage detected