(config: AxiosRequestConfig)
| 45 | return this.request<T>({ ...config, method: "GET" }); |
| 46 | } |
| 47 | post<T = unknown>(config: AxiosRequestConfig): Promise<T> { |
| 48 | return this.request<T>({ ...config, method: "POST" }); |
| 49 | } |
| 50 | put<T = unknown>(config: AxiosRequestConfig): Promise<T> { |
| 51 | return this.request<T>({ ...config, method: "PUT" }); |
| 52 | } |