MCPcopy Index your code
hub / github.com/WebFreak001/code-debug / Mapping

Interface Mapping

src/source_file_map.ts:3–6  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { PathKind, PathWin32, PathPosix } from "./path_kind";
2
3interface Mapping {
4 "remote": string;
5 "local": string;
6}
7
8export class SourceFileMap {
9 private sortedMappings: { [key in keyof Mapping]: Mapping[] } = {remote: [], local: []};

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected