(udid: string, version: number, controlPort: number, streamPort: number)
| 12 | private tunnelProc?: SubProcess; |
| 13 | |
| 14 | constructor(udid: string, version: number, controlPort: number, streamPort: number) { |
| 15 | this.udid = udid; |
| 16 | this.version = version; |
| 17 | this.controlPort = controlPort; |
| 18 | this.streamPort = streamPort; |
| 19 | } |
| 20 | |
| 21 | async start(): Promise<void> { |
| 22 | await this.startTunnel(); |
nothing calls this directly
no outgoing calls
no test coverage detected