You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

14 lines
380 B

import { XYCoord } from 'dnd-core';
export declare function getNodeClientOffset(node: any): {
x: any;
y: any;
} | null;
export declare function getEventClientOffset(e: any): {
x: any;
y: any;
};
export declare function getDragPreviewOffset(sourceNode: any, dragPreview: any, clientOffset: XYCoord, anchorPoint: any, offsetPoint: any): {
x: any;
y: any;
};