diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/PursLoader/Loader.md | 12 | ||||
-rw-r--r-- | docs/PursLoader/Plugin.md | 2 |
2 files changed, 10 insertions, 4 deletions
diff --git a/docs/PursLoader/Loader.md b/docs/PursLoader/Loader.md index bb02470..d05e3b7 100644 --- a/docs/PursLoader/Loader.md +++ b/docs/PursLoader/Loader.md | |||
@@ -3,19 +3,25 @@ | |||
3 | #### `Effects` | 3 | #### `Effects` |
4 | 4 | ||
5 | ``` purescript | 5 | ``` purescript |
6 | type Effects eff = (loader :: Loader | eff) | 6 | type Effects eff = (console :: CONSOLE, err :: EXCEPTION | eff) |
7 | ``` | ||
8 | |||
9 | #### `Effects_` | ||
10 | |||
11 | ``` purescript | ||
12 | type Effects_ eff = Effects (loader :: Loader | eff) | ||
7 | ``` | 13 | ``` |
8 | 14 | ||
9 | #### `loader` | 15 | #### `loader` |
10 | 16 | ||
11 | ``` purescript | 17 | ``` purescript |
12 | loader :: forall eff. LoaderRef -> String -> Eff (Effects eff) Unit | 18 | loader :: forall eff. LoaderRef -> String -> Eff (Effects_ eff) Unit |
13 | ``` | 19 | ``` |
14 | 20 | ||
15 | #### `loaderFn` | 21 | #### `loaderFn` |
16 | 22 | ||
17 | ``` purescript | 23 | ``` purescript |
18 | loaderFn :: forall eff. Fn2 LoaderRef String (Eff (Effects eff) Unit) | 24 | loaderFn :: forall eff. Fn2 LoaderRef String (Eff (Effects_ eff) Unit) |
19 | ``` | 25 | ``` |
20 | 26 | ||
21 | 27 | ||
diff --git a/docs/PursLoader/Plugin.md b/docs/PursLoader/Plugin.md index 9abec4d..645c41b 100644 --- a/docs/PursLoader/Plugin.md +++ b/docs/PursLoader/Plugin.md | |||
@@ -3,7 +3,7 @@ | |||
3 | #### `Result` | 3 | #### `Result` |
4 | 4 | ||
5 | ``` purescript | 5 | ``` purescript |
6 | type Result = { srcMap :: ImmutableMap String String, ffiMap :: ImmutableMap String String, graph :: DependencyGraph } | 6 | type Result = { srcMap :: ImmutableMap String String, ffiMap :: ImmutableMap String String, graph :: DependencyGraph, output :: String } |
7 | ``` | 7 | ``` |
8 | 8 | ||
9 | #### `Compile` | 9 | #### `Compile` |