@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.
9 lines (8 loc) • 389 B
TypeScript
import { InjectionToken, InputSignal, OutputEmitterRef } from '@angular/core';
import { IHasHostElement } from '../i-has-host-element';
export declare const F_FLOW: InjectionToken<FFlowBase>;
export declare abstract class FFlowBase implements IHasHostElement {
abstract fId: InputSignal<string>;
abstract hostElement: HTMLElement;
abstract fLoaded: OutputEmitterRef<string>;
}