131b40498bb28e3a578ab763463a24e28453732cf41d03a55ceb94352f166138afadfebd6d7d82b0db0a6db3eb37164ab4cc1a093a73df16c2bcdfab4873d6 623 B

123456789101112131415161718
  1. import type { GenMapping } from '@jridgewell/gen-mapping';
  2. import type { DecodedSourceMap, EncodedSourceMap, Options } from './types';
  3. /**
  4. * A SourceMap v3 compatible sourcemap, which only includes fields that were
  5. * provided to it.
  6. */
  7. export default class SourceMap {
  8. file?: string | null;
  9. mappings: EncodedSourceMap['mappings'] | DecodedSourceMap['mappings'];
  10. sourceRoot?: string;
  11. names: string[];
  12. sources: (string | null)[];
  13. sourcesContent?: (string | null)[];
  14. version: 3;
  15. ignoreList: number[] | undefined;
  16. constructor(map: GenMapping, options: Options);
  17. toString(): string;
  18. }