UNPKG

@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) 346 B
import { ILine } from '@foblex/2d'; import { InjectionToken } from '@angular/core'; import { IHasHostElement } from '../../../i-has-host-element'; export declare const CONNECTION_GRADIENT: InjectionToken<IConnectionGradient>; export interface IConnectionGradient extends IHasHostElement { initialize(): void; redraw(line: ILine): void; }