import { Security } from './Security'; import { TAxiosRequestConfig } from '../type'; export declare class SecurityEntity implements Security { permit: string[]; constructor(permit?: string[]); /** * 匹配接口是否放行 * @param url */ permitMatch(url: string): boolean; enabled: boolean; requestInterceptor(requestConfig: TAxiosRequestConfig): TAxiosRequestConfig; setEnable(enable: boolean): void; }