(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl)
| 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 | }, |
| 121 | put(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl) { |
| 122 | return this.execute(internalRequest.put(url, options)) |
| 123 | }, |