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.

11 lines (10 loc) 307 B
import { IPointerEvent } from './i-pointer-event'; export declare class ITouchMoveEvent extends IPointerEvent { constructor(event: TouchEvent, target?: HTMLElement); isMouseLeftButton(): boolean; isMouseRightButton(): boolean; getPosition(): { x: number; y: number; }; }