mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-06 22:49:14 +08:00
8 lines
319 B
Text
8 lines
319 B
Text
import { TraceMap } from './trace-mapping';
|
|
import type { SectionedSourceMapInput } from './types';
|
|
declare type AnyMap = {
|
|
new (map: SectionedSourceMapInput, mapUrl?: string | null): TraceMap;
|
|
(map: SectionedSourceMapInput, mapUrl?: string | null): TraceMap;
|
|
};
|
|
export declare const AnyMap: AnyMap;
|
|
export {};
|