UNPKG

1e14

Version:

Minimal API for building function graphs

9 lines (8 loc) 291 B
import { InPort } from "./InPort"; /** * Describes an output port. * Output ports serve the sole purpose of being connected to input ports. * From a technical standpoint, output ports are but a set of input ports. * (Of other nodes.) */ export declare type OutPort<V> = Set<InPort<V>>;