( url: string, config?: AxiosRequestConfig, )
| 61 | ); |
| 62 | |
| 63 | export const get = <T = any, R = AxiosResponse<T>>( |
| 64 | url: string, |
| 65 | config?: AxiosRequestConfig, |
| 66 | ): Promise<R> => { |
| 67 | return axiosInstance.get<T, R>(formatUrl(url), config); |
| 68 | }; |
| 69 | |
| 70 | export const head = <R = AxiosResponse>( |
| 71 | url: string, |
no test coverage detected