Files
2025-11-24 23:24:06 +08:00

9 lines
302 B
TypeScript

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 {};