(path: string, options?: { withFileTypes?: boolean })
| 272 | }, |
| 273 | |
| 274 | readdir(path: string, options?: { withFileTypes?: boolean }): Promise<unknown[]> { |
| 275 | return fsPromises.readdir(path, options as Record<string, unknown>); |
| 276 | }, |
| 277 | |
| 278 | rm(path: string, options?: { recursive?: boolean; force?: boolean }): Promise<void> { |
| 279 | return fsPromises.rm(path, options); |
no test coverage detected