(path: string)
| 293 | exists(path: string): Promise<boolean>; |
| 294 | stat(path: string): Promise<StateStat | null>; |
| 295 | lstat(path: string): Promise<StateStat | null>; |
| 296 | mkdir(path: string, options?: StateMkdirOptions): Promise<void>; |
| 297 | readdir(path: string): Promise<string[]>; |
| 298 | readdirWithFileTypes(path: string): Promise<StateDirent[]>; |
no outgoing calls
no test coverage detected