class FileBag extends Set<IFile>import { FileBag } from "https://deno.land/x/mesozoic@v1.0.0-alpha.19/lib/fileBag.ts"; A FileBag holds and manages implementations of IFile Methodsfilter(predicate: (file: IFile) => boolean)find(predicate: (file: IFile) => boolean)get(path: string): Promise<IFile>merge(other: FileBag)Merge this FileBag with another toArray()Static Methodsprivatecreate(items: IFile[]): FileBag