blob: 2f127bdb0e0059d4af561c7b900c8bea5540afa6 (
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) / [stdio](../modules/stdio.md) / Debug
# Interface: Debug<_, T\>
[stdio](../modules/stdio.md).Debug
Generic interface for declaring effects
**`Example`**
```ts
interface MyEffect extends Effect<string[]> {}
```
## Type parameters
| Name | Type | Description |
| :------ | :------ | :------ |
| `_` | extends `string` | The output generated by the effect (defaults to `unknown`) |
| `T` | `T` | - |
## Hierarchy
- [`Effect`](effect.Effect.md)<`T`\>
↳ **`Debug`**
|