MCPcopy Create free account
hub / github.com/NiladriHazra/WhatToBuild / KeyFile

Interface KeyFile

components/RepositoryKeyFiles.tsx:43–51  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

41import CodeViewer from './CodeViewer';
42
43interface KeyFile {
44 path: string;
45 name: string;
46 reason: string;
47 summary: string;
48 size: number;
49 content?: string;
50 detailedAnalysis?: string;
51}
52
53export default function RepositoryKeyFiles({ repoFullName }: { repoFullName: string }) {
54 const [keyFiles, setKeyFiles] = useState<KeyFile[]>([]);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected