Removes a file or directory. If force is true, do not throw on ENOENT.
(path: string, recursive: boolean, force: boolean)
| 87 | |
| 88 | /** Removes a file or directory. If force is true, do not throw on ENOENT. */ |
| 89 | rm(path: string, recursive: boolean, force: boolean): Promise<void>; |
| 90 | |
| 91 | /** Renames/moves a file or directory. */ |
| 92 | rename(src: string, dest: string): Promise<void>; |
no outgoing calls
no test coverage detected