Files
med-notes/.pnpm-store/v10/files/67/131b40498bb28e3a578ab763463a24e28453732cf41d03a55ceb94352f166138afadfebd6d7d82b0db0a6db3eb37164ab4cc1a093a73df16c2bcdfab4873d6
2025-05-09 05:30:08 +02:00

19 lines
623 B
Plaintext

import type { GenMapping } from '@jridgewell/gen-mapping';
import type { DecodedSourceMap, EncodedSourceMap, Options } from './types';
/**
* A SourceMap v3 compatible sourcemap, which only includes fields that were
* provided to it.
*/
export default class SourceMap {
file?: string | null;
mappings: EncodedSourceMap['mappings'] | DecodedSourceMap['mappings'];
sourceRoot?: string;
names: string[];
sources: (string | null)[];
sourcesContent?: (string | null)[];
version: 3;
ignoreList: number[] | undefined;
constructor(map: GenMapping, options: Options);
toString(): string;
}