( path: string, body: unknown )
| 64 | } |
| 65 | |
| 66 | function put<T = void>( |
| 67 | path: string, |
| 68 | body: unknown |
| 69 | ): Promise<ResponseWithData<T>> { |
| 70 | return request('PUT', path, body); |
| 71 | } |
| 72 | |
| 73 | function deleteRequest<T = void>( |
| 74 | path: string, |
no test coverage detected