Copy file from source to destination
(src: string, dest: string)
| 38 | |
| 39 | /** Copy file from source to destination */ |
| 40 | copyFile(src: string, dest: string): Promise<void>; |
| 41 | |
| 42 | /** Delete a file */ |
| 43 | deleteFile(filePath: string): Promise<void>; |
no outgoing calls
no test coverage detected