(this: Client.HttpClient, url: string | URL, options?: ClientRequest.Options.NoBody)
| 113 | return this.execute(internalRequest.get(url, options)) |
| 114 | }, |
| 115 | head(this: Client.HttpClient, url: string | URL, options?: ClientRequest.Options.NoBody) { |
| 116 | return this.execute(internalRequest.head(url, options)) |
| 117 | }, |
| 118 | post(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl) { |
| 119 | return this.execute(internalRequest.post(url, options)) |
| 120 | }, |
no test coverage detected