(path: string, options?: { recursive?: boolean; force?: boolean })
| 879 | } |
| 880 | |
| 881 | async rm(path: string, options?: { recursive?: boolean; force?: boolean }) { |
| 882 | return this.inner.rm(path, options); |
| 883 | } |
| 884 | |
| 885 | async cp(src: string, dest: string, options?: { recursive?: boolean }) { |
| 886 | return this.inner.cp(src, dest, options); |