(path: string, options: RequestOptions = {})
| 218 | } |
| 219 | |
| 220 | async patchWithMeta<T>(path: string, options: RequestOptions = {}): Promise<RequestResult<T>> { |
| 221 | return this.requestWithMeta<T>('PATCH', path, options); |
| 222 | } |
| 223 | |
| 224 | async deleteWithMeta<T>(path: string, options: RequestOptions = {}): Promise<RequestResult<T>> { |
| 225 | return this.requestWithMeta<T>('DELETE', path, options); |
nothing calls this directly
no test coverage detected