@connectv/core
Version:
agent-based reactive programming library for typescript/javascript
13 lines (12 loc) • 415 B
TypeScript
/**
*
* Creates a [value](https://connective.dev/docs/value) pin. A value
* pin will emit its value each time all connected pins emit, or emit it
* per subscription when no pins are connected to it.
* [Checkout the docs](https://connective.dev/docs/value) for examples and further information.
*
* @param val
*
*/
export declare function value(val: any): import("./control").Control;
export default value;