@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) • 422 B
TypeScript
import { FSelectionAreaBase } from '../../f-selection-area-base';
import { FEventTrigger } from '../../../domain';
import { IPointerEvent } from "../../../drag-toolkit";
export declare class SelectionAreaPreparationRequest {
event: IPointerEvent;
fSelectionArea: FSelectionAreaBase;
fTrigger: FEventTrigger;
constructor(event: IPointerEvent, fSelectionArea: FSelectionAreaBase, fTrigger: FEventTrigger);
}