(path: string, options?: RmOptions)
| 64 | readdir(path: string): Promise<string[]>; |
| 65 | readdirWithFileTypes(path: string): Promise<FileSystemDirent[]>; |
| 66 | rm(path: string, options?: RmOptions): Promise<void>; |
| 67 | cp(src: string, dest: string, options?: CpOptions): Promise<void>; |
| 68 | mv(src: string, dest: string): Promise<void>; |
| 69 | symlink(target: string, linkPath: string): Promise<void>; |
no outgoing calls