(options: Omit<RequestOptions, 'method' | 'body'>)
| 168 | } |
| 169 | |
| 170 | async get<T>(options: Omit<RequestOptions, 'method' | 'body'>): Promise<T> { |
| 171 | return this.send<T>({...options, method: 'GET'}); |
| 172 | } |
| 173 | |
| 174 | async put<T>(options: Omit<RequestOptions, 'method'>): Promise<T> { |
| 175 | return this.send<T>({...options, method: 'PUT'}); |
no test coverage detected