(reject: (e: Error) => void)
| 42 | const TIMEOUT_MS = 30_000 |
| 43 | |
| 44 | function timeoutReject(reject: (e: Error) => void): void { |
| 45 | reject(new Error(`computer-use native call exceeded ${TIMEOUT_MS}ms`)) |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Hold a pump reference for the lifetime of a long-lived registration |
nothing calls this directly
no outgoing calls
no test coverage detected