@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.
8 lines (7 loc) • 310 B
TypeScript
import { ILine } from '@foblex/2d';
import { InjectionToken } from '@angular/core';
import { IHasHostElement } from '../../../i-has-host-element';
export declare const CONNECTION_TEXT: InjectionToken<IConnectionText>;
export interface IConnectionText extends IHasHostElement {
redraw(line: ILine): void;
}