(path: string, options: RequestOptions = {})
| 189 | } |
| 190 | |
| 191 | async put<T>(path: string, options: RequestOptions = {}): Promise<T> { |
| 192 | return this.requestWithMeta<T>('PUT', path, options).then(r => r.body); |
| 193 | } |
| 194 | |
| 195 | async patch<T>(path: string, options: RequestOptions = {}): Promise<T> { |
| 196 | return this.requestWithMeta<T>('PATCH', path, options).then(r => r.body); |
nothing calls this directly
no test coverage detected