aboutsummaryrefslogtreecommitdiff
path: root/docs/interfaces/effect.Bind.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/interfaces/effect.Bind.md')
-rw-r--r--docs/interfaces/effect.Bind.md36
1 files changed, 12 insertions, 24 deletions
diff --git a/docs/interfaces/effect.Bind.md b/docs/interfaces/effect.Bind.md
index f11db50..334bd5f 100644
--- a/docs/interfaces/effect.Bind.md
+++ b/docs/interfaces/effect.Bind.md
@@ -4,35 +4,23 @@
[effect](../modules/effect.md).Bind
+Generic interface for declaring effects
+
+**`Example`**
+
+```ts
+interface MyEffect extends Effect<string[]> {}
+```
+
## Type parameters
-| Name | Type |
-| :------ | :------ |
-| `_Eff` | extends [`Effect`](effect.Effect.md) |
-| `_Fn` | extends [`Func`](../modules/effect.md#func) |
+| Name | Type | Description |
+| :------ | :------ | :------ |
+| `_Eff` | extends [`Effect`](effect.Effect.md) | The output generated by the effect (defaults to `unknown`) |
+| `_Fn` | extends [`Func`](../modules/effect.md#func) | - |
## Hierarchy
- [`Effect`](effect.Effect.md)
↳ **`Bind`**
-
-## Table of contents
-
-### Properties
-
-- [output](effect.Bind.md#output)
-
-## Properties
-
-### output
-
-• **output**: `unknown`
-
-#### Inherited from
-
-[Effect](effect.Effect.md).[output](effect.Effect.md#output)
-
-#### Defined in
-
-[effect.ts:2](https://github.com/phenax/ts-types-runtime-environment/blob/6c7b4f3/stdlib/effect.ts#L2)