/* eslint-disable @typescript-eslint/no-explicit-any */ /** * @description 参数对象接口定义 * @export * @interface IApiParams */ export interface IApiParams { [key: string | symbol]: any; } /** * @description 数据对象接口定义 * @export * @interface IApiData */ export interface IApiData { [key: string | symbol]: any; } /** * @description 任意对象结构定义 * @export * @interface IApiObject */ export interface IApiObject { [key: string | symbol]: any; }