/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { StatsCompilation } from "webpack"; import type { BundleBuddyConfig, BundleSummaries, WebpackStatsProcessor } from "../BundleBuddyTypes"; import type { BundleFileData } from "./getBundleFilePathsFromFolder"; export interface GetBundleSummariesArgs { bundlePaths: BundleFileData[]; statsProcessors: WebpackStatsProcessor[]; getStatsFile: (relativePath: string) => Promise; getBundleBuddyConfigFile: (bundleName: string) => Promise | (BundleBuddyConfig | undefined); } export declare function getBundleSummaries(args: GetBundleSummariesArgs): Promise; //# sourceMappingURL=getBundleSummaries.d.ts.map