/** * API 调用客户端 */ import type { ApiCallInput, ApiCallResult } from './types'; import type { HttpResponse } from './utils/http'; /** * 发起接口调用 * * @param apiParam 接口调用参数 { api, version, token?, params?, files?, config?, host? } */ export declare function call(apiParam: ApiCallInput): Promise>>; //# sourceMappingURL=client.d.ts.map