* Copies a file from the source path to the destination path. * @param src The path to the source file. * @param dest The path to the destination file. * @returns A promise that resolves when the copy is complete.
(src: string, dest: string)
| 59 | * @returns A promise that resolves when the copy is complete. |
| 60 | */ |
| 61 | copyFile(src: string, dest: string): Promise<void>; |
| 62 | |
| 63 | /** |
| 64 | * Creates a new, unique temporary directory. |
no outgoing calls
no test coverage detected