diff options
Diffstat (limited to 'docs/PursLoader/Plugin.md')
-rw-r--r-- | docs/PursLoader/Plugin.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/PursLoader/Plugin.md b/docs/PursLoader/Plugin.md index 9abec4d..26e3f26 100644 --- a/docs/PursLoader/Plugin.md +++ b/docs/PursLoader/Plugin.md | |||
@@ -15,7 +15,13 @@ type Compile eff = Nullable Error -> Result -> Eff eff Unit | |||
15 | #### `Context` | 15 | #### `Context` |
16 | 16 | ||
17 | ``` purescript | 17 | ``` purescript |
18 | type Context eff = { compile :: Compile eff -> Eff eff Unit } | 18 | type Context eff = { compile :: Compile eff -> Eff eff Unit, options :: Options } |
19 | ``` | ||
20 | |||
21 | #### `Options` | ||
22 | |||
23 | ``` purescript | ||
24 | type Options = { bundle :: Boolean, output :: String, bundleOutput :: String } | ||
19 | ``` | 25 | ``` |
20 | 26 | ||
21 | #### `get` | 27 | #### `get` |