MCPcopy Create free account
hub / github.com/altic-dev/Pilot / FileEntry

Interface FileEntry

src/components/file-browser.tsx:6–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4import { ChevronRight, ChevronDown, File, Folder } from "lucide-react";
5
6interface FileEntry {
7 name: string;
8 type: "file" | "directory";
9 size: number;
10 path: string;
11}
12
13interface FileBrowserProps {
14 sessionId: string;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected