UNPKG

1e14

Version:

Minimal API for building function 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]>; };