function walkimport { walk } from "https://dotland.deno.dev/std@0.181.0/fs/mod.ts"; walk(root: string | URL, unnamed 1?: WalkOptions): AsyncIterableIterator<WalkEntry>Walks the file tree rooted at root, yielding each file or directory in the tree filtered according to the given options. ExamplesExample 1 import { walk } from "https://deno.land/std@0.181.0/fs/walk.ts"; import { assert } from "https://deno.land/std@0.181.0/testing/asserts.ts"; for await (const entry of walk(".")) { console.log(entry.path); assert(entry.isFile); } Parametersroot: string | URLoptionalunnamed 1: WalkOptions = [UNSUPPORTED]ReturnsAsyncIterableIterator<WalkEntry>import walkimport { walk } from "https://dotland.deno.dev/std@0.181.0/fs/mod.ts";