|
- import { TransformResult } from 'vite';
- import { E as EncodedSourceMap } from './types.d-1e7e3fdf.js';
-
- interface InstallSourceMapSupportOptions {
- getSourceMap: (source: string) => EncodedSourceMap | null | undefined;
- }
- declare function withInlineSourcemap(result: TransformResult): TransformResult;
- declare function extractSourceMap(code: string): EncodedSourceMap | null;
- declare function installSourcemapsSupport(options: InstallSourceMapSupportOptions): void;
-
- export { extractSourceMap, installSourcemapsSupport, withInlineSourcemap };
|