(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl)
| 122 | return this.execute(internalRequest.put(url, options)) |
| 123 | }, |
| 124 | patch(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl) { |
| 125 | return this.execute(internalRequest.patch(url, options)) |
| 126 | }, |
| 127 | del(this: Client.HttpClient, url: string | URL, options?: ClientRequest.Options.NoUrl) { |
| 128 | return this.execute(internalRequest.del(url, options)) |
| 129 | }, |
no test coverage detected