MCPcopy
hub / github.com/giancarloerra/SocratiCode / FileChunk

Interface FileChunk

src/types.ts:3–12  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1// SPDX-License-Identifier: AGPL-3.0-only
2// Copyright (C) 2026 Giancarlo Erra - Altaire Limited
3export interface FileChunk {
4 id: string;
5 filePath: string;
6 relativePath: string;
7 content: string;
8 startLine: number;
9 endLine: number;
10 language: string;
11 type: "code" | "comment" | "mixed";
12}
13
14export interface CodeGraphNode {
15 filePath: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected