(options: Omit<RequestOptions, 'method'>)
| 172 | } |
| 173 | |
| 174 | async put<T>(options: Omit<RequestOptions, 'method'>): Promise<T> { |
| 175 | return this.send<T>({...options, method: 'PUT'}); |
| 176 | } |
| 177 | |
| 178 | async delete<T>( |
| 179 | options: Omit<RequestOptions, 'method' | 'body'>, |