/*! * Copyright (c) Microsoft Corporation and contributors. All rights reserved. * Licensed under the MIT License. */ /// /// import type { StatsCompilation } from "webpack"; /** * To save storage space, we store stats files as gzipped mspack files. This method takes * in a compressed file path and outputs the webpack stats object. */ export declare function decompressStatsFile(buffer: Buffer): StatsCompilation; //# sourceMappingURL=decompressStatsFile.d.ts.map