Files
med-notes/.pnpm-store/v10/files/f2/545f4247eee0bade1c5cdc31fb83e36541f17f738c8d1b11e873784e31dbd31bde975c5eb55d6061db186dd3dd2e04fa0cea959357e0f492d29e7969676974
2025-05-09 05:30:08 +02:00

9 lines
311 B
Plaintext

import { TraceMap } from './trace-mapping';
import type { SectionedSourceMapInput } from './types';
type AnyMap = {
new (map: SectionedSourceMapInput, mapUrl?: string | null): TraceMap;
(map: SectionedSourceMapInput, mapUrl?: string | null): TraceMap;
};
export declare const AnyMap: AnyMap;
export {};