* Writes content to a file. * @param path The path to the file. * @param content The content to write. * @returns A promise that resolves when the write is complete.
(path: string, content: string)
| 81 | * @returns A promise that resolves when the write is complete. |
| 82 | */ |
| 83 | writeFile(path: string, content: string): Promise<void>; |
| 84 | |
| 85 | /** |
| 86 | * Spawns a child process and returns a promise that resolves with the process's |
no outgoing calls
no test coverage detected