Files
med-notes/.pnpm-store/v10/files/cc/a6c8103ea81acae534c977bce304048f762dcc0b2e614cfacc80a24df3508eb8aeb5a379894d5a8df71dd84eae428704c9aa8d6de20f785e6c1f28e44dfac7
2025-05-09 05:30:08 +02:00

8 lines
341 B
Plaintext

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[];