Checks whether a path exists.
(path: string)
| 72 | |
| 73 | /** Checks whether a path exists. */ |
| 74 | exists(path: string): Promise<boolean>; |
| 75 | |
| 76 | /** Gets metadata about a file or directory. Throw if it does not exist. */ |
| 77 | stat(path: string): Promise<SessionFsFileInfo>; |
no outgoing calls
no test coverage detected