/// export type FileSystem = { fileExists: (filePath: string) => Promise; directoryExists: (filePath: string) => Promise; readFile: (filePath: string) => Promise; writeFile: (filePath: string, contents: string) => Promise; };