import { AxiosInstance } from 'axios'; /** 插件接口 */ export declare type IPlugin = { /** 插件名, 唯一属性 */ pluginName: string; /** 处理方法 */ handler: (axios: AxiosInstance, plugins?: Array) => void; };