UNPKG
deth
Version:
latest (0.0.5)
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
Ethereum node focused on Developer Experience
deth
/
dist
/
esm
/
fs
/
FileSystem.d.ts
9 lines
(8 loc)
•
257 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
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; }