(endpoint: string, options?: RequestOptions)
| 84 | } |
| 85 | |
| 86 | delete<T>(endpoint: string, options?: RequestOptions) { |
| 87 | return this.request<T>(endpoint, { ...options, method: 'DELETE' }) |
| 88 | } |
| 89 | } |
| 90 | |
| 91 | export class ApiError extends Error { |
no test coverage detected