UNPKG
flowcode
Version:
latest (0.1.1)
0.1.1
0.1.0
Tools for building dataflow graphs
kwaia.com
kwaia/flowcode.js
flowcode
/
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]>; };