mirror of
https://github.com/Shopify/draggable.git
synced 2025-12-08 20:15:56 +00:00
19 lines
251 B
TypeScript
19 lines
251 B
TypeScript
export const defaultTouchEventOptions = {
|
|
touches: [
|
|
{
|
|
pageX: 0,
|
|
pageY: 0,
|
|
},
|
|
],
|
|
};
|
|
|
|
export const defaultMouseEventOptions = {
|
|
button: 0,
|
|
clientX: 0,
|
|
clientY: 0,
|
|
pageX: 0,
|
|
pageY: 0,
|
|
};
|
|
|
|
export const DRAG_DELAY = 100;
|