UNPKG

deth

Version:

Ethereum node focused on Developer Experience

9 lines (8 loc) 257 B
import { Path } from './Path'; export interface FileSystem { fileExists(path: Path): boolean; listDir(path: Path): Path[]; findFiles(pattern: string, basePath: Path): Path[]; readFile(path: Path): string; requireFile(path: Path): any; }