frontend/.pnpm-store/v3/files/e7/620d0eb5db5e3b908e153bd959034965c2e076c15d0ae73a6119a93ba29156efcb24741df7bd7edbfc538e5f0f77265375d0c3146a3408b45e534e9c4f8e2f

10 lines
327 B
Plaintext

import type { ApiRequestOptions } from './ApiRequestOptions';
import type { ApiResult } from './ApiResult';
/**
* Request using fetch client
* @param options The request options from the the service
* @result ApiResult
* @throws ApiError
*/
export declare function request(options: ApiRequestOptions): Promise<ApiResult>;