function readdirSyncimport { readdirSync } from "https://deno.land/std@0.110.0/node/_fs/_fs_readdir.ts"; readdirSync(path: string | URL, options: { withFileTypes: true; encoding?: string; }): Dirent[]readdirSync(path: string | URL, options?: { withFileTypes?: false; encoding?: string; }): string[]readdirSync(path: string | URL, options?: readDirOptions): Array<string | Dirent>Parameterspath: string | URLoptions: { withFileTypes: true; encoding?: string; }ReturnsDirent[]Parameterspath: string | URLoptionaloptions: { withFileTypes?: false; encoding?: string; }Returnsstring[]Parameterspath: string | URLoptionaloptions: readDirOptionsReturnsArray<string | Dirent>