function expandGlobSyncimport { expandGlobSync } from "https://dotland.deno.dev/std@0.181.0/fs/expand_glob.ts"; expandGlobSync(glob: string | URL, unnamed 1?: ExpandGlobOptions): IterableIterator<WalkEntry>Synchronous version of expandGlob(). ExamplesExample 1 import { expandGlobSync } from "https://deno.land/std@0.181.0/fs/expand_glob.ts"; for (const file of expandGlobSync("**\/*.ts")) { console.log(file); } Parametersglob: string | URLoptionalunnamed 1: ExpandGlobOptions = [UNSUPPORTED]ReturnsIterableIterator<WalkEntry>