any-map.d.ts 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 {};