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