// k/v Obj export interface Obj { [key: string]: unknown; } // 匿名函数 export type Fn = (...args: unknown[]) => unknown; export type ServiceQuery = [ { params: { key?: string } & Record; }, ]; export type ServiceResult = string;