@connectv/core
Version:
agent-based reactive programming library for typescript/javascript
21 lines (20 loc) • 552 B
TypeScript
import { Pipe } from './pipe';
/**
*
* Represents [fork](https://connective.dev/docs/fork) pins.
*
*/
export declare class Fork extends Pipe {
constructor(len?: number);
private static _create_fork_tag;
}
/**
*
* Creates a [fork](https://connective.dev/docs/fork) pin.
* [Checkout the docs](https://connective.dev/docs/fork) for examples and further information.
*
* @param len the length of the fork-tag that will be added to the context of each emission.
*
*/
export declare function fork(len?: number): Fork;
export default fork;