| 22 | |
| 23 | // Type definitions |
| 24 | interface FileInfo { |
| 25 | size: number; |
| 26 | created: Date; |
| 27 | modified: Date; |
| 28 | accessed: Date; |
| 29 | isDirectory: boolean; |
| 30 | isFile: boolean; |
| 31 | permissions: string; |
| 32 | } |
| 33 | |
| 34 | export interface SearchOptions { |
| 35 | excludePatterns?: string[]; |
nothing calls this directly
no outgoing calls
no test coverage detected