* The timeout (in milliseconds) to wait for a complete response. * //(default: 5 minutes)//
()
| 324 | * //(default: 5 minutes)// |
| 325 | */ |
| 326 | get timeout() { return this.#timeout; } |
| 327 | set timeout(timeout) { |
| 328 | (0, errors_js_1.assertArgument)(timeout >= 0, "timeout must be non-zero", "timeout", timeout); |
| 329 | this.#timeout = timeout; |
no outgoing calls
no test coverage detected