(path: string, options: RequestOptions = {})
| 197 | } |
| 198 | |
| 199 | async delete<T>(path: string, options: RequestOptions = {}): Promise<T> { |
| 200 | return this.requestWithMeta<T>('DELETE', path, options).then(r => r.body); |
| 201 | } |
| 202 | |
| 203 | /** |
| 204 | * Like `get` / `post` / etc. but returns the full `RequestResult` including |
no test coverage detected