(path: string, options?: { recursive?: boolean; force?: boolean })
| 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 }>; |
| 16 | mkdtemp(prefix: string): Promise<string>; |
no outgoing calls
no test coverage detected