(url: string, params?: object, _object = {})
| 157 | } |
| 158 | |
| 159 | get<T>(url: string, params?: object, _object = {}): Promise<ResultData<T>> { |
| 160 | return this.service.get(url, { params, ..._object }); |
| 161 | } |
| 162 | post<T>(url: string, params?: object, timeout?: number, headers?: object): Promise<ResultData<T>> { |
| 163 | let config = { |
| 164 | baseURL: import.meta.env.VITE_API_URL as string, |
no outgoing calls
no test coverage detected