(path: string, options?: MkdirOptions)
| 61 | /** Does not follow the final symlink. Throws ENOENT if path does not exist. */ |
| 62 | lstat(path: string): Promise<FsStat>; |
| 63 | mkdir(path: string, options?: MkdirOptions): Promise<void>; |
| 64 | readdir(path: string): Promise<string[]>; |
| 65 | readdirWithFileTypes(path: string): Promise<FileSystemDirent[]>; |
| 66 | rm(path: string, options?: RmOptions): Promise<void>; |
no outgoing calls