-
Notifications
You must be signed in to change notification settings - Fork 4
/
fs.rm
37 lines (37 loc) · 1.16 KB
/
fs.rm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
("fs"
native?: #t
exports: ("rename" "renameSync"
"truncate" "truncateSync"
"chown" "chownSync"
"fchown" "fchownSync"
"lchown" "lchownSync"
"chmod" "chmodSync"
"fchmod" "fchmodSync"
"lchmod" "lchmodSync"
"stat" "statSync"
"lstat" "lstatSync"
"fstat" "fstatSync"
"link" "linkSync"
"symlink" "symlinkSync"
"readlink" "readlinkSync"
"realpath" "realpathSync"
"unlink" "unlinkSync"
"rmdir" "rmdirSync"
"mkdir" "mkdirSync"
"readdir" "readdirSync"
"close" "closeSync"
"open" "openSync"
"utimes" "utimesSync"
"futimes" "futimesSync"
"fsync" "fsyncSync"
"write" "writeSync"
"read" "readSync"
"readFile" "readFileSync"
"writeFile" "writeFileSync"
"appendFile" "appendFileSync"
"watchFile" "unwatchFile"
"watch" "FSWatcher"
"exists" "existsSync"
"Stats"
"createReadStream" "ReadStream"
"createWriteStream" "WriteStream"))