UNPKG

302 BTypeScriptView Raw
1import { OutputChunk } from "rollup";
2interface SourceMapModuleRenderInfo {
3 id: string;
4 renderedLength: number;
5 code: string[];
6}
7export declare const getSourcemapModules: (id: string, outputChunk: OutputChunk, dir: string) => Promise<Record<string, SourceMapModuleRenderInfo>>;
8export {};