|
32 | 32 |
|
33 | 33 | chown :: forall eff. FilePath -> Number -> Number -> Callback eff Unit -> Eff (fs :: FS | eff) Unit
|
34 | 34 |
|
| 35 | + link :: forall eff. FilePath -> FilePath -> Callback eff Unit -> Eff (fs :: FS | eff) Unit |
| 36 | + |
35 | 37 | readFile :: forall eff. FilePath -> Callback eff Buffer -> Eff (fs :: FS | eff) Unit
|
36 | 38 |
|
37 | 39 | readTextFile :: forall eff. Encoding -> FilePath -> Callback eff String -> Eff (fs :: FS | eff) Unit
|
38 | 40 |
|
| 41 | + readlink :: forall eff. FilePath -> Callback eff FilePath -> Eff (fs :: FS | eff) Unit |
| 42 | + |
39 | 43 | rename :: forall eff. FilePath -> FilePath -> Callback eff Unit -> Eff (fs :: FS | eff) Unit
|
40 | 44 |
|
41 | 45 | stat :: forall eff. FilePath -> Callback eff Stats -> Eff (fs :: FS | eff) Unit
|
42 | 46 |
|
| 47 | + symlink :: forall eff. FilePath -> FilePath -> SymlinkType -> Callback eff Unit -> Eff (fs :: FS | eff) Unit |
| 48 | + |
43 | 49 | truncate :: forall eff. FilePath -> Number -> Callback eff Unit -> Eff (fs :: FS | eff) Unit
|
44 | 50 |
|
45 | 51 | writeFile :: forall eff. FilePath -> Buffer -> Callback eff Unit -> Eff (fs :: FS | eff) Unit
|
|
93 | 99 |
|
94 | 100 | chown :: forall eff. FilePath -> Number -> Number -> Eff (err :: Exception Error, fs :: FS | eff) Unit
|
95 | 101 |
|
| 102 | + link :: forall eff. FilePath -> FilePath -> Eff (err :: Exception Error, fs :: FS | eff) Unit |
| 103 | + |
96 | 104 | readFile :: forall eff. FilePath -> Eff (err :: Exception Error, fs :: FS | eff) Buffer
|
97 | 105 |
|
98 | 106 | readTextFile :: forall eff. Encoding -> FilePath -> Eff (err :: Exception Error, fs :: FS | eff) String
|
99 | 107 |
|
| 108 | + readlink :: forall eff. FilePath -> Eff (err :: Exception Error, fs :: FS | eff) FilePath |
| 109 | + |
100 | 110 | rename :: forall eff. FilePath -> FilePath -> Eff (err :: Exception Error, fs :: FS | eff) Unit
|
101 | 111 |
|
102 | 112 | stat :: forall eff. FilePath -> Eff (err :: Exception Error, fs :: FS | eff) Stats
|
103 | 113 |
|
| 114 | + symlink :: forall eff. FilePath -> FilePath -> SymlinkType -> Eff (err :: Exception Error, fs :: FS | eff) Unit |
| 115 | + |
104 | 116 | truncate :: forall eff. FilePath -> Number -> Eff (err :: Exception Error, fs :: FS | eff) Unit
|
105 | 117 |
|
106 | 118 | writeFile :: forall eff. FilePath -> Buffer -> Eff (err :: Exception Error, fs :: FS | eff) Unit
|
|
0 commit comments