aboutsummaryrefslogtreecommitdiff
path: root/docs/interfaces/effect.Pure.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/interfaces/effect.Pure.md')
-rw-r--r--docs/interfaces/effect.Pure.md34
1 files changed, 11 insertions, 23 deletions
diff --git a/docs/interfaces/effect.Pure.md b/docs/interfaces/effect.Pure.md
index cc93955..69fd304 100644
--- a/docs/interfaces/effect.Pure.md
+++ b/docs/interfaces/effect.Pure.md
@@ -4,34 +4,22 @@
[effect](../modules/effect.md).Pure
+Generic interface for declaring effects
+
+**`Example`**
+
+```ts
+interface MyEffect extends Effect<string[]> {}
+```
+
## Type parameters
-| Name |
-| :------ |
-| `V` |
+| Name | Description |
+| :------ | :------ |
+| `V` | The output generated by the effect (defaults to `unknown`) |
## Hierarchy
- [`Effect`](effect.Effect.md)<`V`\>
↳ **`Pure`**
-
-## Table of contents
-
-### Properties
-
-- [output](effect.Pure.md#output)
-
-## Properties
-
-### output
-
-• **output**: `V`
-
-#### 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)