UNPKG

flowcode

Version:

Tools for building dataflow graphs

9 lines (8 loc) 224 B
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]>; };