UNPKG
1e14
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
Minimal API for building function graphs
github.com/1e14/1e14
1e14/1e14
1e14
/
dist
/
types
/
InPorts.d.ts
9 lines
(8 loc)
•
219 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
InPort
}
from
"./InPort"
;
/** * A bundle of input ports. * Every node has exactly one input port bundle and one output port bundle. */
export
declare
type
InPorts
<I> = { [K
in
keyof I]:
InPort
<I[K]>; };