function ensureLinkSyncimport { ensureLinkSync } from "https://dotland.deno.dev/std@0.119.0/fs/mod.ts"; ensureLinkSync(src: string, dest: string): voidEnsures that the hard link exists. If the directory structure does not exist, it is created. Ensures that the hard link exists. If the directory structure does not exist, it is created. Parameterssrc: stringthe source file path. Directory hard links are not allowed. dest: stringthe destination link path Returnsvoid