elearning/Frontend-Learner/node_modules/rollup-plugin-visualizer/dist/plugin/sourcemap.d.ts

9 lines
302 B
TypeScript
Raw Normal View History

2026-01-13 10:46:40 +07:00
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 {};