/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { WebpackStatsProcessor } from "../BundleBuddyTypes"; export interface EntryStatsProcessorOptions { metricNameProvider?: (chunkName: string) => string; } /** * Returns a stats processor that returns total asset size information for each entryPoint in the stats object */ export declare function getEntryStatsProcessor(options: EntryStatsProcessorOptions): WebpackStatsProcessor; //# sourceMappingURL=entryStatsProcessor.d.ts.map