/** * * result示例: * * [ * 'static/js/chunk-vendors.59912eed.js', * 'static/js/index.8ec239e5.js', * 'static/index.b0707a6a.css' * ] * * @ignore */ export declare function getEntryFiles(content: string, domain: string): string[]; /** * 分析首页Bundle信息 * * @export * @param config 配置 * @param {string} config.domain 域名 * @param {string} config.buildPath 打包路径 * @returns {*} * * @example * ```ts * analyzeIndexBundle({ * domain: '', * buildPath: '', * }) * ``` */ export declare function analyzeIndexBundle({ domain, buildPath }: { domain: string; buildPath: string; }): ({ file: string; size: number; time: number; } | undefined)[];