(path: string, body?: Body)
| 62 | } |
| 63 | |
| 64 | async post<T>(path: string, body?: Body): Promise<ApiResult<T>> { |
| 65 | return await this.do("POST", path, body); |
| 66 | } |
| 67 | |
| 68 | async delete<T>(path: string, body?: Body): Promise<ApiResult<T>> { |
| 69 | return await this.do("DELETE", path, body); |
no test coverage detected