UNPKG

flowcode

Version:

Tools for building dataflow graphs

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