( path: string, body: unknown )
| 57 | } |
| 58 | |
| 59 | export function post<T = void>( |
| 60 | path: string, |
| 61 | body: unknown |
| 62 | ): Promise<ResponseWithData<T>> { |
| 63 | return request('POST', path, body); |
| 64 | } |
| 65 | |
| 66 | function put<T = void>( |
| 67 | path: string, |
no test coverage detected