function expandGlobimport { expandGlob } from "https://dotland.deno.dev/std@0.181.0/fs/expand_glob.ts"; expandGlob(glob: string | URL, unnamed 1?: ExpandGlobOptions): AsyncIterableIterator<WalkEntry>Expand the glob string from the specified root directory and yield each result as a WalkEntry object. See globToRegExp() for details on supported syntax. ExamplesExample 1 import { expandGlob } from "https://deno.land/std@0.181.0/fs/expand_glob.ts"; for await (const file of expandGlob("**\/*.ts")) { console.log(file); } Parametersglob: string | URLoptionalunnamed 1: ExpandGlobOptions = [UNSUPPORTED]ReturnsAsyncIterableIterator<WalkEntry>