Writes content to a file, creating parent directories if needed.
(path: string, content: string, mode?: number)
| 66 | |
| 67 | /** Writes content to a file, creating parent directories if needed. */ |
| 68 | writeFile(path: string, content: string, mode?: number): Promise<void>; |
| 69 | |
| 70 | /** Appends content to a file, creating parent directories if needed. */ |
| 71 | appendFile(path: string, content: string, mode?: number): Promise<void>; |
no outgoing calls
no test coverage detected