(from: string, to: string, type?: string)
| 26 | } |
| 27 | |
| 28 | export function symlinkFile(from: string, to: string, type?: string): Promise<void> { |
| 29 | return fs.symlink(from, to, type); |
| 30 | } |
| 31 | |
| 32 | export function createDir(path: string): Promise<string | undefined> { |
| 33 | return fs.mkdir(path, { recursive: true }); |