DuyTa's picture
Upload folder using huggingface_hub
bc20498 verified
raw
history blame
607 Bytes
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 };