芝麻web文件管理V1.00
编辑当前文件:/home/rejoandoctor/test.joruridoctor.com/node_modules/sucrase/dist/types/computeSourceMap.d.ts
import type { SourceMapOptions } from "./index"; import type { Token } from "./parser/tokenizer"; import type { RootTransformerResult } from "./transformers/RootTransformer"; export interface RawSourceMap { version: number; file: string; sources: Array
; sourceRoot?: string; sourcesContent?: Array
; mappings: string; names: Array
; } /** * Generate a source map indicating that each line maps directly to the original line, * with the tokens in their new positions. */ export default function computeSourceMap({ code: generatedCode, mappings: rawMappings }: RootTransformerResult, filePath: string, options: SourceMapOptions, source: string, tokens: Array
): RawSourceMap;