// k/v Obj
export interface Obj {
  [key: string]: unknown;
}

// 匿名函数
export type Fn = (...args: unknown[]) => unknown;

export type ServiceQuery = [
  {
    params: { key?: string } & Record<string, any>;
  },
];

export type ServiceResult = string;
