a6c8103ea81acae534c977bce304048f762dcc0b2e614cfacc80a24df3508eb8aeb5a379894d5a8df71dd84eae428704c9aa8d6de20f785e6c1f28e44dfac7 341 B

1234567
  1. import type { ReverseSegment, SourceMapSegment } from './sourcemap-segment';
  2. import type { MemoState } from './binary-search';
  3. export type Source = {
  4. __proto__: null;
  5. [line: number]: Exclude<ReverseSegment, [number]>[];
  6. };
  7. export default function buildBySources(decoded: readonly SourceMapSegment[][], memos: MemoState[]): Source[];