2025-09-05 14:59:21 +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 {};