(path: string, options?: { flags?: string })
| 264 | }, |
| 265 | |
| 266 | createWriteStream(path: string, options?: { flags?: string }) { |
| 267 | return createWriteStream(path, options); |
| 268 | }, |
| 269 | |
| 270 | cp(source: string, destination: string, options?: { recursive?: boolean }): Promise<void> { |
| 271 | return fsPromises.cp(source, destination, options); |
no outgoing calls
no test coverage detected