| 10 | const __dirname = path.dirname(__filename); |
| 11 | |
| 12 | interface ProxyServerOptions { |
| 13 | targetPort: number; |
| 14 | targetHost: string; |
| 15 | proxyPort: number; |
| 16 | wsPort: number; |
| 17 | getActiveClient: () => WebSocket | null; |
| 18 | } |
| 19 | |
| 20 | export function createProxyServer( |
| 21 | options: ProxyServerOptions |
nothing calls this directly
no outgoing calls
no test coverage detected