aboutsummaryrefslogtreecommitdiff
path: root/docs/interfaces/effect.Seq.md
blob: 3604873f0284ad690ee29bacd2f3a1f4d60e4fe2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
[ts-types-lang](../README.md) / [Modules](../modules.md) / [effect](../modules/effect.md) / Seq

# Interface: Seq<_Effs\>

[effect](../modules/effect.md).Seq

Generic interface for declaring effects

**`Example`**

```ts
interface MyEffect extends Effect<string[]> {}
```

## Type parameters

| Name | Type | Description |
| :------ | :------ | :------ |
| `_Effs` | extends [`Effect`](effect.Effect.md)[] | The output generated by the effect (defaults to `unknown`) |

## Hierarchy

- [`Effect`](effect.Effect.md)

  ↳ **`Seq`**