astro-ghostcms/.pnpm-store/v3/files/f2/545f4247eee0bade1c5cdc31fb8...

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 {};