/** * 服务端日志记录参数接口 */ export interface ServerLogParams { token: string; enverionment: "development" | "production"; [key: string]: unknown; } /** * 调用服务端接口记录日志 * @param params 请求参数,必须包含 token 字段 * @returns Promise 不影响主流程,错误会被捕获 */ export declare function reportLogger(params: ServerLogParams): Promise;