/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { ChunkToAnalyze, WebpackStatsProcessor } from "../BundleBuddyTypes"; export interface BundleBuddyConfigProcessorOptions { metricNameProvider?: (chunk: ChunkToAnalyze) => string; } /** * A stats processor that takes in a bundle specific configuration object for use in bundle analysis */ export declare function getBundleBuddyConfigProcessor(options: BundleBuddyConfigProcessorOptions): WebpackStatsProcessor; //# sourceMappingURL=bundleBuddyConfigProcessor.d.ts.map