(path: string)
| 7 | createDirectory(path: string): Promise<void>; |
| 8 | listDirectory(path: string): Promise<FileEntry[]>; |
| 9 | deleteFile(path: string): Promise<void>; |
| 10 | deleteDirectory(path: string): Promise<void>; |
| 11 | scanFiles(basePath: string, pattern: string): Promise<string[]>; |
| 12 | /** |
no outgoing calls
no test coverage detected