| 10 | import WirelessTransfer from "../components/WirelessTransfer"; |
| 11 | |
| 12 | interface FileInfo { |
| 13 | name: string; |
| 14 | path: string; |
| 15 | is_dir: boolean; |
| 16 | size: number; |
| 17 | extension: string; |
| 18 | modified?: string; |
| 19 | } |
| 20 | |
| 21 | function formatSize(bytes: number): string { |
| 22 | if (!bytes) return "—"; |
nothing calls this directly
no outgoing calls
no test coverage detected