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