astro-ghostcms/.pnpm-store/v3/files/47/0aeb900c88bcd261a4efab80de3...

15 lines
607 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import { TransformResult } from 'vite';
import { E as EncodedSourceMap } from './trace-mapping.d-xyIfZtPm.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 };