(path: string, content: string, encoding: BufferEncoding = 'utf8')
| 260 | }, |
| 261 | |
| 262 | writeFile(path: string, content: string, encoding: BufferEncoding = 'utf8'): Promise<void> { |
| 263 | return fsPromises.writeFile(path, content, encoding); |
| 264 | }, |
| 265 | |
| 266 | createWriteStream(path: string, options?: { flags?: string }) { |
| 267 | return createWriteStream(path, options); |
no test coverage detected