(path: string,)
| 58 | } |
| 59 | |
| 60 | async get<T>(path: string,): Promise<ApiResult<T>> { |
| 61 | return await this.do("GET", path); |
| 62 | } |
| 63 | |
| 64 | async post<T>(path: string, body?: Body): Promise<ApiResult<T>> { |
| 65 | return await this.do("POST", path, body); |
no test coverage detected