export type TouchEvent = 'touchcancel' | 'touchend' | 'touchmove' | 'touchstart';

export default {
    'touchcancel': 'onTouchCancel',
    'touchend': 'onTouchEnd',
    'touchmove': 'onTouchMove',
    'touchstart': 'onTouchStart'
};