astro-ghostcms/.pnpm-store/v3/files/cc/a6c8103ea81acae534c977bce30...

8 lines
341 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
import type { ReverseSegment, SourceMapSegment } from './sourcemap-segment';
import type { MemoState } from './binary-search';
export type Source = {
__proto__: null;
[line: number]: Exclude<ReverseSegment, [number]>[];
};
export default function buildBySources(decoded: readonly SourceMapSegment[][], memos: MemoState[]): Source[];