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.
12 lines
540 B
12 lines
540 B
2 years ago
|
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 };
|