(fileName: string, content: string, options?: any)
| 6 | } |
| 7 | |
| 8 | export function writeFile(fileName: string, content: string, options?: any): Promise<void> { |
| 9 | return fs.writeFile(fileName, content, options); |
| 10 | } |
| 11 | |
| 12 | export function deleteFile(path: string): Promise<void> { |
| 13 | return fs.unlink(path); |
no test coverage detected