(path: string, options: RequestOptions = {})
| 185 | } |
| 186 | |
| 187 | async post<T>(path: string, options: RequestOptions = {}): Promise<T> { |
| 188 | return this.requestWithMeta<T>('POST', path, options).then(r => r.body); |
| 189 | } |
| 190 | |
| 191 | async put<T>(path: string, options: RequestOptions = {}): Promise<T> { |
| 192 | return this.requestWithMeta<T>('PUT', path, options).then(r => r.body); |
nothing calls this directly
no test coverage detected