You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
540 B
11 lines
540 B
import { TransformResult } from 'vite';
|
|
import { R as RawSourceMap } from './types-63205a44.js';
|
|
|
|
interface InstallSourceMapSupportOptions {
|
|
getSourceMap: (source: string) => RawSourceMap | null | undefined;
|
|
}
|
|
declare function withInlineSourcemap(result: TransformResult): Promise<TransformResult>;
|
|
declare function extractSourceMap(code: string): RawSourceMap | null;
|
|
declare function installSourcemapsSupport(options: InstallSourceMapSupportOptions): void;
|
|
|
|
export { extractSourceMap, installSourcemapsSupport, withInlineSourcemap };
|
|
|