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) 233 B
import { IPoint } from '@foblex/2d'; export interface IFDragHandler<TData = any> { fEventType: string; fData?: TData; prepareDragSequence?(): void; onPointerMove(difference: IPoint): void; onPointerUp?(): void; }