/** * Transform object for dnd kit drag and drop. * * The x and y coordinates represent the delta from the point of origin of your draggable element since it started being dragged. * The scaleX and scaleY properties represent the difference in scale between the item that is dragged and the droppable container it is currently over. * @internal */ export type DragAndDropTransform = { x: number; y: number; scaleX: number; scaleY: number; };