(path: string)
| 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>; |
| 17 | tmpdir(): string; |
no outgoing calls
no test coverage detected