(endpoint: string, options?: RequestOptions)
| 138 | } |
| 139 | |
| 140 | async get<T>(endpoint: string, options?: RequestOptions): Promise<T> { |
| 141 | return this.request<T>(endpoint, { ...options, method: 'GET' }); |
| 142 | } |
| 143 | |
| 144 | async post<T>( |
| 145 | endpoint: string, |
no test coverage detected