(config: AxiosRequestConfig)
| 51 | return this.request<T>({ ...config, method: "PUT" }); |
| 52 | } |
| 53 | delete<T = unknown>(config: AxiosRequestConfig): Promise<T> { |
| 54 | return this.request<T>({ ...config, method: "DELETE" }); |
| 55 | } |
| 56 | request<T = unknown>(config: AxiosRequestConfig): Promise<T> { |
| 57 | return axiosInstance.request<any, T>(config); |
| 58 | } |
no test coverage detected