/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { WebpackStatsProcessor } from "../BundleBuddyTypes"; export interface TotalSizeStatsProcessorOptions { metricName: string; } /** * A simple stats processor that simply returns the size information for the entry chunk */ export declare function getTotalSizeStatsProcessor(options: TotalSizeStatsProcessorOptions): WebpackStatsProcessor; //# sourceMappingURL=totalSizeStatsProcessor.d.ts.map