blob: 7a865b51199957e29ef1c7e7b7910adc90b414e3 (
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
[ts-types-lang](../README.md) / [Modules](../modules.md) / [effect](../modules/effect.md) / Kind1
# Interface: Kind1<Inp, Out\>
[effect](../modules/effect.md).Kind1
## Type parameters
| Name | Type |
| :------ | :------ |
| `Inp` | `unknown` |
| `Out` | `unknown` |
## Hierarchy
- **`Kind1`**
↳ [`AssertEqualsK`](test.AssertEqualsK.md)
↳ [`IdK`](util.IdK.md)
↳ [`ConstK`](util.ConstK.md)
## Table of contents
### Properties
- [input](effect.Kind1.md#input)
- [return](effect.Kind1.md#return)
## Properties
### input
• **input**: `Inp`
#### Defined in
[effect.ts:6](https://github.com/phenax/ts-types-runtime-environment/blob/6c7b4f3/stdlib/effect.ts#L6)
___
### return
• **return**: `Out`
#### Defined in
[effect.ts:7](https://github.com/phenax/ts-types-runtime-environment/blob/6c7b4f3/stdlib/effect.ts#L7)
|