/** * @file Utilities - analyzeOutputs * @module mkbuild/utils/analyzeOutputs */ import type { OutputMetadata } from '../types/index.mjs'; /** * Generates a build analysis for the given `outputs`. * * @param {string} outdir - Output directory name * @param {Record>} [outputs={}] - Build * output map from metafile * @return {{ analysis: string; bytes: number }} Build output analysis and size */ declare const analyzeOutputs: (outdir: string, outputs?: Record>) => { analysis: string; bytes: number; }; export default analyzeOutputs;