2022-11-18 21:38:41 +01:00

14 lines
245 B
TypeScript

/** How far from the sides the gesture can start. */
export const area: dragArea = {
top: 0,
right: 0,
bottom: 0,
left: 0
};
/** Tresholds for gestures. */
export const treshold: dragTreshold = {
start: 15,
swipe: 15
};