* Reads the content of a file. * @param path The path to the file. * @returns A promise that resolves to the file content as a string.
(path: string)
| 51 | * @returns A promise that resolves to the file content as a string. |
| 52 | */ |
| 53 | readFile(path: string): Promise<string>; |
| 54 | |
| 55 | /** |
| 56 | * Copies a file from the source path to the destination path. |
no outgoing calls
no test coverage detected