@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.
10 lines (9 loc) • 358 B
TypeScript
import { InjectionToken } from '@angular/core';
import { IHasHostElement } from '../../../i-has-host-element';
export declare const CONNECTION_PATH: InjectionToken<IConnectionPath>;
export interface IConnectionPath extends IHasHostElement<SVGPathElement> {
initialize(): void;
setPath(path: string): void;
select(): void;
deselect(): void;
}