(path: string, body?: Body)
| 66 | } |
| 67 | |
| 68 | async delete<T>(path: string, body?: Body): Promise<ApiResult<T>> { |
| 69 | return await this.do("DELETE", path, body); |
| 70 | } |
| 71 | |
| 72 | async put<T>(path: string, body?: Body): Promise<ApiResult<T>> { |
| 73 | return await this.do("PUT", path, body); |
no test coverage detected