aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/PursLoader/Plugin.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/PursLoader/Plugin.md')
-rw-r--r--docs/PursLoader/Plugin.md8
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
18type Context eff = { compile :: Compile eff -> Eff eff Unit } 18type Context eff = { compile :: Compile eff -> Eff eff Unit, options :: Options }
19```
20
21#### `Options`
22
23``` purescript
24type Options = { bundle :: Boolean, output :: String, bundleOutput :: String }
19``` 25```
20 26
21#### `get` 27#### `get`