(path: string, options?: { withFileTypes?: boolean })
| 10 | createWriteStream(path: string, options?: { flags?: string }): WriteStream; |
| 11 | cp(source: string, destination: string, options?: { recursive?: boolean }): Promise<void>; |
| 12 | readdir(path: string, options?: { withFileTypes?: boolean }): Promise<unknown[]>; |
| 13 | rm(path: string, options?: { recursive?: boolean; force?: boolean }): Promise<void>; |
| 14 | existsSync(path: string): boolean; |
| 15 | stat(path: string): Promise<{ isDirectory(): boolean; mtimeMs: number }>; |
no outgoing calls
no test coverage detected