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) 419 B
import { IPoint } from '@foblex/2d'; import { IHandler } from '@foblex/mediator'; import { CalculateConnectionCenterRequest } from './calculate-connection-center-request'; export declare class CalculateConnectionCenterHandler implements IHandler<CalculateConnectionCenterRequest, IPoint> { handle(request: CalculateConnectionCenterRequest): IPoint; private calculateDistance; private findPointAtDistance; }