(url: string, data?: any, config?: AxiosRequestConfig)
| 15 | } |
| 16 | |
| 17 | async post(url: string, data?: any, config?: AxiosRequestConfig) { |
| 18 | const res = await this.axios.post(url, data, config) |
| 19 | return res.data |
| 20 | } |
| 21 | |
| 22 | getForModule(url: string, config?: AxiosRequestConfig) { |
| 23 | return this.get(MODULE_URL_PREFIX + url, config) |
no outgoing calls
no test coverage detected