@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) • 388 B
TypeScript
import { IPoint, IRect } from '@foblex/2d';
import { EFResizeHandleType } from '../../../f-node';
export declare class CalculateChangedPositionRequest {
originalRect: IRect;
changedRect: IRect;
difference: IPoint;
fResizeHandleType: EFResizeHandleType;
constructor(originalRect: IRect, changedRect: IRect, difference: IPoint, fResizeHandleType: EFResizeHandleType);
}