export interface MilkyApiClientOptions { baseUrl: string; access_token?: string; } /** * 调用协议端 API:POST {baseUrl}/api/{apiName},Body JSON,鉴权。 * 非 200 或 retcode !== 0 时抛错。 */ export declare function callApi(options: MilkyApiClientOptions, apiName: string, params?: Record): Promise; //# sourceMappingURL=api.d.ts.map