UNPKG

rollup-plugin-visualizer

Version:

Visualize and analyze your bundle to quickly see which modules are taking up space.

9 lines (8 loc) 302 B
import { OutputChunk } from "rollup"; interface SourceMapModuleRenderInfo { id: string; renderedLength: number; code: string[]; } export declare const getSourcemapModules: (id: string, outputChunk: OutputChunk, dir: string) => Promise<Record<string, SourceMapModuleRenderInfo>>; export {};