545f4247eee0bade1c5cdc31fb83e36541f17f738c8d1b11e873784e31dbd31bde975c5eb55d6061db186dd3dd2e04fa0cea959357e0f492d29e7969676974 311 B

12345678
  1. import { TraceMap } from './trace-mapping';
  2. import type { SectionedSourceMapInput } from './types';
  3. type AnyMap = {
  4. new (map: SectionedSourceMapInput, mapUrl?: string | null): TraceMap;
  5. (map: SectionedSourceMapInput, mapUrl?: string | null): TraceMap;
  6. };
  7. export declare const AnyMap: AnyMap;
  8. export {};