(path: string, options: RequestOptions = {})
| 193 | } |
| 194 | |
| 195 | async patch<T>(path: string, options: RequestOptions = {}): Promise<T> { |
| 196 | return this.requestWithMeta<T>('PATCH', path, options).then(r => r.body); |
| 197 | } |
| 198 | |
| 199 | async delete<T>(path: string, options: RequestOptions = {}): Promise<T> { |
| 200 | return this.requestWithMeta<T>('DELETE', path, options).then(r => r.body); |
nothing calls this directly
no test coverage detected