MCPcopy Create free account
hub / github.com/Fibi66/FeiControl / FileNode

Interface FileNode

src/components/FileTree.tsx:16–21  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

14} from "lucide-react";
15
16export interface FileNode {
17 name: string;
18 path: string;
19 type: "file" | "folder";
20 children?: FileNode[];
21}
22
23interface FileTreeProps {
24 files: FileNode[];

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected