* Checks if a path exists on the file system. * @param path The path to check. * @returns A boolean indicating whether the path exists.
(path: string)
| 53 | * @returns A boolean indicating whether the path exists. |
| 54 | */ |
| 55 | existsSync(path: string): boolean; |
| 56 | |
| 57 | /** |
| 58 | * Reads a file and returns its content. |
no outgoing calls
no test coverage detected