UNPKG

@augment-vir/node

Version:

A collection of augments, helpers types, functions, and classes only for Node.js (backend) JavaScript environments.

17 lines (16 loc) 508 B
/** * Creates a symlink. * * @category Node : File * @category Package : @augment-vir/node * @package [`@augment-vir/node`](https://www.npmjs.com/package/@augment-vir/node) */ export declare function createSymlink({ linkTo, symlinkPath, }: { /** * Path that the symlink will link to. If relative, it will be linked relative to the symlink * location. */ linkTo: string; /** The location and name the symlink file to be created. */ symlinkPath: string; }): Promise<void>;