UNPKG

flowcode

Version:

Tools for building dataflow graphs

12 lines (11 loc) 290 B
import { InPorts } from "./InPorts"; import { OutPorts } from "./OutPorts"; /** * Single node, atomic or composite. * Nodes expose input and output ports that may be connected to each other. * @see connect */ export declare type Node<I, O> = { i: InPorts<I>; o: OutPorts<O>; };