function fs.moveSyncimport { fs } from "https://dotland.deno.dev/x/dax@0.39.2/src/deps.ts"; const { moveSync } = fs; moveSync(src: string | URL,dest: string | URL,unnamed 2?: MoveOptions,): voidMoves a file or directory synchronously. ExamplesExample 1 import { moveSync } from "https://deno.land/std@$STD_VERSION/fs/mod.ts"; moveSync("./foo", "./bar"); // void Parameterssrc: string | URLdest: string | URLoptionalunnamed 2: MoveOptions = [UNSUPPORTED]Returnsvoid