(path: string, options: RequestOptions = {})
| 210 | } |
| 211 | |
| 212 | async postWithMeta<T>(path: string, options: RequestOptions = {}): Promise<RequestResult<T>> { |
| 213 | return this.requestWithMeta<T>('POST', path, options); |
| 214 | } |
| 215 | |
| 216 | async putWithMeta<T>(path: string, options: RequestOptions = {}): Promise<RequestResult<T>> { |
| 217 | return this.requestWithMeta<T>('PUT', path, options); |
no test coverage detected