Appends content to a file, creating parent directories if needed.
(path: string, content: string, mode?: number)
| 69 | |
| 70 | /** Appends content to a file, creating parent directories if needed. */ |
| 71 | appendFile(path: string, content: string, mode?: number): Promise<void>; |
| 72 | |
| 73 | /** Checks whether a path exists. */ |
| 74 | exists(path: string): Promise<boolean>; |
no outgoing calls
no test coverage detected