| 7 | export type FileContent = Uint8Array | string; |
| 8 | |
| 9 | export interface FilesMap { |
| 10 | [filePath: string]: FileContent; |
| 11 | } |
| 12 | |
| 13 | export interface FileWatchOptions { |
| 14 | recursive?: boolean; |
nothing calls this directly
no outgoing calls
no test coverage detected