| 4 | */ |
| 5 | |
| 6 | export interface TransportConfig { |
| 7 | endpoint: string |
| 8 | timeout?: number |
| 9 | fetch?: typeof fetch |
| 10 | apiKey?: string |
| 11 | } |
| 12 | |
| 13 | export interface TransportPort { |
| 14 | onmessage: ((event: { data: any }) => void) | null |
nothing calls this directly
no outgoing calls
no test coverage detected