deth
Version:
Ethereum node focused on Developer Experience
10 lines (9 loc) • 333 B
TypeScript
import { FileSystem } from './FileSystem';
import { Path } from './Path';
export declare class RealFileSystem implements FileSystem {
fileExists(path: Path): boolean;
findFiles(pattern: string, basePath: Path): Path[];
listDir(path: Path): Path[];
readFile(path: Path): string;
requireFile(path: Path): string;
}