diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/PursLoader/LoaderRef.md | 6 | ||||
-rw-r--r-- | docs/PursLoader/Plugin.md | 20 |
2 files changed, 4 insertions, 22 deletions
diff --git a/docs/PursLoader/LoaderRef.md b/docs/PursLoader/LoaderRef.md index 60341f7..917db3a 100644 --- a/docs/PursLoader/LoaderRef.md +++ b/docs/PursLoader/LoaderRef.md | |||
@@ -30,12 +30,6 @@ async :: forall eff. LoaderRef -> Eff (loader :: Loader | eff) (Maybe Error -> S | |||
30 | cacheable :: forall eff. LoaderRef -> Eff (loader :: Loader | eff) Unit | 30 | cacheable :: forall eff. LoaderRef -> Eff (loader :: Loader | eff) Unit |
31 | ``` | 31 | ``` |
32 | 32 | ||
33 | #### `query` | ||
34 | |||
35 | ``` purescript | ||
36 | query :: LoaderRef -> String | ||
37 | ``` | ||
38 | |||
39 | #### `clearDependencies` | 33 | #### `clearDependencies` |
40 | 34 | ||
41 | ``` purescript | 35 | ``` purescript |
diff --git a/docs/PursLoader/Plugin.md b/docs/PursLoader/Plugin.md index 645c41b..9f9f852 100644 --- a/docs/PursLoader/Plugin.md +++ b/docs/PursLoader/Plugin.md | |||
@@ -1,27 +1,21 @@ | |||
1 | ## Module PursLoader.Plugin | 1 | ## Module PursLoader.Plugin |
2 | 2 | ||
3 | #### `Result` | ||
4 | |||
5 | ``` purescript | ||
6 | type Result = { srcMap :: ImmutableMap String String, ffiMap :: ImmutableMap String String, graph :: DependencyGraph, output :: String } | ||
7 | ``` | ||
8 | |||
9 | #### `Compile` | 3 | #### `Compile` |
10 | 4 | ||
11 | ``` purescript | 5 | ``` purescript |
12 | type Compile eff = Nullable Error -> Result -> Eff eff Unit | 6 | type Compile eff = Nullable Error -> DependencyGraph -> String -> Eff eff Unit |
13 | ``` | 7 | ``` |
14 | 8 | ||
15 | #### `Context` | 9 | #### `Context` |
16 | 10 | ||
17 | ``` purescript | 11 | ``` purescript |
18 | type Context eff = { compile :: Compile eff -> Eff eff Unit } | 12 | type Context eff = { compile :: Compile eff -> Eff eff Unit, options :: Options } |
19 | ``` | 13 | ``` |
20 | 14 | ||
21 | #### `get` | 15 | #### `Options` |
22 | 16 | ||
23 | ``` purescript | 17 | ``` purescript |
24 | get :: forall key value. ImmutableMap key value -> key -> Maybe value | 18 | type Options = { bundle :: Boolean, output :: String, bundleOutput :: String } |
25 | ``` | 19 | ``` |
26 | 20 | ||
27 | #### `dependenciesOf` | 21 | #### `dependenciesOf` |
@@ -30,12 +24,6 @@ get :: forall key value. ImmutableMap key value -> key -> Maybe value | |||
30 | dependenciesOf :: DependencyGraph -> String -> Either Error (Array String) | 24 | dependenciesOf :: DependencyGraph -> String -> Either Error (Array String) |
31 | ``` | 25 | ``` |
32 | 26 | ||
33 | #### `ImmutableMap` | ||
34 | |||
35 | ``` purescript | ||
36 | data ImmutableMap :: * -> * -> * | ||
37 | ``` | ||
38 | |||
39 | #### `DependencyGraph` | 27 | #### `DependencyGraph` |
40 | 28 | ||
41 | ``` purescript | 29 | ``` purescript |