Sha256: af811e0ce72c5ab7b52b48d33e3c2403851344e8d8f94f9dceffdd206c3abab6
Contents?: true
Size: 607 Bytes
Versions: 26
Compression:
Stored size: 607 Bytes
Contents
import { TransformResult } from 'vite'; import { E as EncodedSourceMap } from './trace-mapping.d-DLVdEqOp.js'; interface InstallSourceMapSupportOptions { getSourceMap: (source: string) => EncodedSourceMap | null | undefined; } declare function withInlineSourcemap(result: TransformResult, options: { root: string; filepath: string; }): TransformResult; declare function extractSourceMap(code: string): EncodedSourceMap | null; declare function installSourcemapsSupport(options: InstallSourceMapSupportOptions): void; export { extractSourceMap, installSourcemapsSupport, withInlineSourcemap };
Version data entries
26 entries across 26 versions & 1 rubygems