(from: string, to: string)
| 22 | } |
| 23 | |
| 24 | export function moveFile(from: string, to: string): Promise<void> { |
| 25 | return fs.rename(from, to); |
| 26 | } |
| 27 | |
| 28 | export function symlinkFile(from: string, to: string, type?: string): Promise<void> { |
| 29 | return fs.symlink(from, to, type); |
no test coverage detected