1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
import { DragGesture } from '../../gestures/drag/index.mjs'; import { PanGesture } from '../../gestures/pan/index.mjs'; import { MeasureLayout } from './layout/MeasureLayout.mjs'; import { HTMLProjectionNode } from 'motion-dom'; const drag = { pan: { Feature: PanGesture, }, drag: { Feature: DragGesture, ProjectionNode: HTMLProjectionNode, MeasureLayout, }, }; export { drag }; //# sourceMappingURL=drag.mjs.map