(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 | }, |
| 130 | options(this: Client.HttpClient, url: string | URL, options?: ClientRequest.Options.NoBody) { |
| 131 | return this.execute(internalRequest.options(url, options)) |
| 132 | } |