(url: string, params = {}, config: AxiosRequestConfig = {})
| 36 | } |
| 37 | |
| 38 | get(url: string, params = {}, config: AxiosRequestConfig = {}) { |
| 39 | return this.axiosInstance.get(url, { |
| 40 | ...params, |
| 41 | ...config, |
| 42 | }); |
| 43 | } |
| 44 | |
| 45 | post(url: string, data = {}, config: AxiosRequestConfig = {}) { |
| 46 | return this.axiosInstance.post(url, data, config); |
no test coverage detected