@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.
13 lines (12 loc) • 367 B
TypeScript
import { IPointerEvent } from "./i-pointer-event";
export declare class IPointerUpEvent extends IPointerEvent {
constructor(event: PointerEvent, target?: HTMLElement);
isMouseLeftButton(): boolean;
isMouseRightButton(): boolean;
getPosition(): {
x: number;
y: number;
};
getPointerType(): string;
getPointerId(): number;
}