1e14
Version:
Minimal API for building function graphs
9 lines (8 loc) • 328 B
TypeScript
import { InPort, OutPort } from "../types";
/**
* Tears down the connection between the specified ports, or, when the input
* port is omitted, tears down all downstream connections of the output port.
* @param outPort
* @param inPort
*/
export declare function disconnect<V>(outPort: OutPort<V>, inPort?: InPort<V>): void;