mirror of
https://github.com/cloudflare/wrangler-action.git
synced 2025-02-02 10:24:46 +01:00
14 lines
599 B
TypeScript
14 lines
599 B
TypeScript
import { TransformResult } from 'vite';
|
|
import { E as EncodedSourceMap } from './types.d-7442d07f.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 };
|