@foblex/flow
Version:
An Angular library designed to simplify the creation and manipulation of dynamic flow. Provides components for flows, nodes, and connections, automating node manipulation and inter-node connections.
11 lines (10 loc) • 408 B
TypeScript
import { FChannel } from './f-channel';
import { FChannelListener, FChannelOperator } from './types';
import { DestroyRef } from '@angular/core';
export declare class FChannelHub {
private readonly _channels;
private _operators;
constructor(...channels: FChannel[]);
pipe(...operators: FChannelOperator[]): FChannelHub;
listen(destroyRef: DestroyRef, callback: FChannelListener): void;
}