版博士V2.0程序
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.
 
 
 
 

12 строки
545 B

  1. import { TransformResult } from 'vite';
  2. import { E as EncodedSourceMap } from './types.d-1e7e3fdf.js';
  3. interface InstallSourceMapSupportOptions {
  4. getSourceMap: (source: string) => EncodedSourceMap | null | undefined;
  5. }
  6. declare function withInlineSourcemap(result: TransformResult): TransformResult;
  7. declare function extractSourceMap(code: string): EncodedSourceMap | null;
  8. declare function installSourcemapsSupport(options: InstallSourceMapSupportOptions): void;
  9. export { extractSourceMap, installSourcemapsSupport, withInlineSourcemap };