export interface SubPackagesItem { preloadRule?: string; plugins?: Record>; pages: string[]; root: string; network?: "all" | "wifi"; } declare type PreloadRuleType = Record; export interface ConfigType { preloadRule?: PreloadRuleType; subPackages?: SubPackagesItem[]; pages: string[]; tabBar?: { custom: boolean; list?: { pagePath: string; iconPath: string; selectedIconPath: string; text: "\u67E5\u5FEB\u9012"; }[]; }; } /** * * @description 解析入口 */ export declare function parseAppEntry(): Promise; export {};