(url: string, config?: FullRequestConfig)
| 360 | |
| 361 | // DELETE request |
| 362 | public delete<T = any>(url: string, config?: FullRequestConfig): Promise<T> { |
| 363 | return this.request({ ...config, method: 'DELETE', url }) |
| 364 | } |
| 365 | |
| 366 | // PATCH request |
| 367 | public patch<T = any>(url: string, data?: any, config?: FullRequestConfig): Promise<T> { |
no test coverage detected