import type Module from './Module__'; import Interface from './Interface__'; /** * 鉴权接口 */ export declare class AuthInterface extends Interface { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'AuthInterface'; /** * 关联的鉴权逻辑 */ authLogic: string; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): AuthInterface; /** * 设置关联的鉴权逻辑 */ setAuthLogic(authLogic: string): void; /** * 祖先 Module */ get module(): Module; } export default AuthInterface; //# sourceMappingURL=AuthInterface__.d.ts.map