import { type XYCoord } from "@evil-internetmann/react-dnd"; import { type DraggableInternalItem, type DraggableItem } from "../types.js"; export type ReachedResizingLimit = "min" | "max" | "none"; export type DragPreviewProps = { itemType: TDraggableItem["type"]; item: TDraggableItem; clientOffset: XYCoord; currentOffset: XYCoord; initialOffset: XYCoord; differenceFromInitialOffset: XYCoord; }; export type DragResizeProps = DragPreviewProps & { getDragLayerPosition: () => XYCoord; scrollCorrection: XYCoord; }; //# sourceMappingURL=types.d.ts.map