(path: string, options?: RequestOptions)
| 450 | request, |
| 451 | |
| 452 | get<T>(path: string, options?: RequestOptions): Promise<ApiResponse<T>> { |
| 453 | return request<T>('GET', path, undefined, options) |
| 454 | }, |
| 455 | |
| 456 | post<T>( |
| 457 | path: string, |
no test coverage detected