Lists entry names in a directory. Throw if it does not exist.
(path: string)
| 81 | |
| 82 | /** Lists entry names in a directory. Throw if it does not exist. */ |
| 83 | readdir(path: string): Promise<string[]>; |
| 84 | |
| 85 | /** Lists entries with type info. Throw if the directory does not exist. */ |
| 86 | readdirWithTypes(path: string): Promise<SessionFsReaddirWithTypesEntry[]>; |
no outgoing calls
no test coverage detected