function ensureSymlinkSyncimport { ensureSymlinkSync } from "https://dotland.deno.dev/std@0.72.0/fs/mod.ts"; ensureSymlinkSync(src: string, dest: string): voidEnsures that the link exists. If the directory structure does not exist, it is created. Parameterssrc: stringthe source file path dest: stringthe destination link path Returnsvoid