(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl)
| 119 | return this.execute(internalRequest.post(url, options)) |
| 120 | }, |
| 121 | put(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 | }, |
no test coverage detected