File tree Expand file tree Collapse file tree 1 file changed +25
-4
lines changed Expand file tree Collapse file tree 1 file changed +25
-4
lines changed Original file line number Diff line number Diff line change @@ -181,10 +181,24 @@ exists :: forall eff. FilePath -> (Boolean -> Eff eff Unit) -> Eff (fs :: FS | e
181
181
182
182
## Module Node.FS.Perms
183
183
184
+ #### ` Perm `
185
+
186
+ ``` purescript
187
+ newtype Perm
188
+ ```
189
+
190
+
184
191
#### ` Perms `
185
192
186
193
``` purescript
187
- data Perms
194
+ newtype Perms
195
+ ```
196
+
197
+
198
+ #### ` semigroupPerm `
199
+
200
+ ``` purescript
201
+ instance semigroupPerm :: Semigroup Perm
188
202
```
189
203
190
204
@@ -195,17 +209,24 @@ permsFromString :: String -> Maybe Perms
195
209
```
196
210
197
211
212
+ #### ` mkPerms `
213
+
214
+ ``` purescript
215
+ mkPerms :: Perm -> Perm -> Perm -> Perms
216
+ ```
217
+
218
+
198
219
#### ` permsToString `
199
220
200
221
``` purescript
201
222
permsToString :: Perms -> String
202
223
```
203
224
204
225
205
- #### ` permsToNum `
226
+ #### ` permsToInt `
206
227
207
228
``` purescript
208
- permsToNum :: Perms -> Number
229
+ permsToInt :: Perms -> Int
209
230
```
210
231
211
232
@@ -559,4 +580,4 @@ fdFlush :: forall eff. FileDescriptor -> Eff (fs :: FS, err :: Exception | eff)
559
580
560
581
``` purescript
561
582
fdClose :: forall eff. FileDescriptor -> Eff (fs :: FS, err :: Exception | eff) Unit
562
- ```
583
+ ```
You can’t perform that action at this time.
0 commit comments