(path: string, options?: { recursive?: boolean; force?: boolean })
| 276 | }, |
| 277 | |
| 278 | rm(path: string, options?: { recursive?: boolean; force?: boolean }): Promise<void> { |
| 279 | return fsPromises.rm(path, options); |
| 280 | }, |
| 281 | |
| 282 | existsSync(path: string): boolean { |
| 283 | return existsSync(path); |
no test coverage detected