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
/
OutPorts.d.ts
9 lines
(8 loc)
•
224 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
OutPort
}
from
"./OutPort"
;
/** * A bundle of output ports. * Every node has exactly one input port bundle and one output port bundle. */
export
declare
type
OutPorts
<O> = { [K
in
keyof O]:
OutPort
<O[K]>; };