(endpoint: string, options?: RequestOptions)
| 56 | } |
| 57 | |
| 58 | get<T>(endpoint: string, options?: RequestOptions) { |
| 59 | return this.request<T>(endpoint, { ...options, method: 'GET' }) |
| 60 | } |
| 61 | |
| 62 | post<T>(endpoint: string, data?: unknown, options?: RequestOptions) { |
| 63 | return this.request<T>(endpoint, { |
no test coverage detected