/** 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
};
