esbuild-plugin-filesize
Version:
ESBuild plugin for displaying filesize.
4 lines (3 loc) • 560 B
TypeScript
import type { NormalizedESBuildPluginFileSizeOption, OutputFileSizeInfo } from './normalize-option';
export declare function boxenSingleOutputReporter({ showMinifiedSize, showGzippedSize, showBrotliSize, theme, }: NormalizedESBuildPluginFileSizeOption, { fileSize, fileName, minifiedSize, gzippedSize, brotliSize, outputPath, }: OutputFileSizeInfo): void;
export declare function boxenMultiOutputReporter({ showMinifiedSize, showGzippedSize, showBrotliSize, showPluginTitle, theme, }: NormalizedESBuildPluginFileSizeOption, infos: OutputFileSizeInfo[]): void;