import { ConfigType } from "./appEntry"; import { DependenciesMapType } from 'utils/files/parse'; /** * * @description 收集tabBar文件 * @param tabBar * @param allDependenciesMap */ export declare function collectTabBarImage(tabBar: ConfigType['tabBar'], allDependenciesMap: DependenciesMapType): Promise; /** * * @description 解析自定义tabBar */ export declare function parseCustomTabBar(tabBar: ConfigType['tabBar']): Promise<{}>; /** * * @description 是否为入口关联文件 * @param filePath * @returns */ export declare function checkIsEntryRelatedFile(filePath: string): boolean; /** * * @description 收集依赖关系 */ export declare function collectDependencies(): Promise; /** * * @description 收集依赖关系:变化或新增文件 * 1、检查文件是否需要复制: */ export declare function collectChangedDependencies(filePath: string): Promise;