14 lines
245 B
TypeScript
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
|
|
};
|