* Reads a file from the Tree as a UTF-8 encoded text file. * * @param path The path of the file to read. * @returns A string containing the contents of the file. * @throws FileDoesNotExistException if the file is not found. * @throws An error if the file contains invalid UTF-8
(path: string)
| 93 | * @throws An error if the file contains invalid UTF-8 characters. |
| 94 | */ |
| 95 | readText(path: string): string; |
| 96 | |
| 97 | /** |
| 98 | * Reads and parses a file from the Tree as a UTF-8 encoded JSON file. |
no outgoing calls
no test coverage detected