/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ import type { StatsCompilation } from "webpack"; /** * This gets the size of a chunk after minification, which is what the browser will parse. */ export declare function getChunkParsedSize(stats: StatsCompilation, chunkId: string | number): number; //# sourceMappingURL=getChunkParsedSize.d.ts.map