(
path: string,
options?: { recursive?: boolean; force?: boolean }
)
| 104 | } |
| 105 | |
| 106 | async rm( |
| 107 | path: string, |
| 108 | options?: { recursive?: boolean; force?: boolean } |
| 109 | ): Promise<void> { |
| 110 | await this.ws.rm(path, options); |
| 111 | } |
| 112 | |
| 113 | async cp( |
| 114 | src: string, |