blob: b503cc05a13ee50be169bd97f0f679783a075f6e (
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
26
|
[ts-types-lang](../README.md) / [Modules](../modules.md) / [test](../modules/test.md) / Test
# Interface: Test<_m, _effs\>
[test](../modules/test.md).Test
Generic interface for declaring effects
**`Example`**
```ts
interface MyEffect extends Effect<string[]> {}
```
## Type parameters
| Name | Type | Description |
| :------ | :------ | :------ |
| `_m` | extends `string` | The output generated by the effect (defaults to `unknown`) |
| `_effs` | extends [`Effect`](effect.Effect.md)[] | - |
## Hierarchy
- [`Effect`](effect.Effect.md)
↳ **`Test`**
|