MCPcopy Create free account
hub / github.com/Rich-Harris/magic-string / DecodedSourceMap

Interface DecodedSourceMap

src/SourceMap.ts:42–50  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

40 | [number, number, number, number, number]
41
42export interface DecodedSourceMap {
43 file?: string
44 sources: string[]
45 sourcesContent?: Array<string | null>
46 names: string[]
47 mappings: SourceMapSegment[][]
48 x_google_ignoreList?: number[]
49 debugId?: string
50}
51
52function getBtoa(): Btoa {
53 if (typeof globalThis !== 'undefined' && typeof globalThis.btoa === 'function') {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected