class VFS implements IVFSimport { VFS } from "https://dotland.deno.dev/x/live@1.63.12/runtime/fs/mod.ts"; ConstructorsnewVFS(fileSystem: FileSystem)Propertiesprotectedwatchers: WatcherMaplastWriteMethodsprivatenotifyForPath(filePath: string)mkdir(_path: string | URL, _options?: Deno.MkdirOptions | undefined): Promise<void>readDir(path: string | URL): AsyncIterable<Deno.DirEntry>readFile(path: string | URL, _options?: Deno.ReadFileOptions | undefined): Promise<Uint8Array>readTextFile(path: string | URL, _options?: Deno.ReadFileOptions | undefined): Promise<string>remove(path: string | URL, _options?: Deno.RemoveOptions | undefined): Promise<void>watchFs(paths: string | string[], _options?: { recursive: boolean; }): Deno.FsWatcherwriteFile(path: string | URL,data: Uint8Array | ReadableStream<Uint8Array>,__options?: Deno.WriteFileOptions | undefined,): Promise<void>writeTextFile(path: string | URL,data: string | ReadableStream<string>,options?: Deno.WriteFileOptions | undefined,): Promise<void>