import BaseNode from '../common/BaseNode'; /** * 微应用 */ export declare class MicroApp extends BaseNode { /** 类名 */ static readonly ConceptName: string; /** * 是否为抽象类 * 抽象类不能产生 concept: string */ static isAbstract: boolean; /** 继承链 */ static readonly inheritanceChain: string[]; /** * 产品概念 */ readonly concept: 'MicroApp'; /** * 微前端框架 */ framework: 'qiankun' | 'icestark' | 'wujie'; /** * 微应用名称 */ name: string; /** * 页面路径前缀 */ routePrefix: string; /** * 接口和静态资源前缀 */ proxyPrefix: string; /** * 登录页面地址 */ loginUrl: string; /** * 无权限页面地址 */ noAuthUrl: string; /** * 404页面地址 */ notFoundUrl: string; /** * @param source 需要合并的部分参数 */ constructor(source?: Partial); static from(source: any, parentNode?: any, parentKey?: string): MicroApp; } export default MicroApp; //# sourceMappingURL=MicroApp__.d.ts.map