function link Usage in Deno```typescript import { link } from "node:node__fs--promises.d.ts"; ``` link(existingPath: PathLike,newPath: PathLike,): Promise<void> Creates a new link from the `existingPath` to the `newPath`. See the POSIX [`link(2)`](http://man7.org/linux/man-pages/man2/link.2.html) documentation for more detail. Parameters existingPath: PathLike newPath: PathLike Return Type Promise<void> Fulfills with `undefined` upon success.