* Reads a file from the file system. * @param path The path to the file. * @returns The contents of the file, or `null` if the file does not exist.
(path: string)
| 5 | * @returns The contents of the file, or `null` if the file does not exist. |
| 6 | */ |
| 7 | read(path: string): string | null; |
| 8 | |
| 9 | /** |
| 10 | * Writes a file to the file system. |
no outgoing calls