Simplify default export

This commit is contained in:
Frederic Junod
2017-12-14 14:08:07 +01:00
committed by Tim Schaub
parent a01e0583ea
commit 2ca60292bb
24 changed files with 50 additions and 75 deletions

View File

@@ -1,11 +1,12 @@
/**
* @module ol/pointer/EventType
*/
/**
* Constants for event names.
* @enum {string}
*/
var _ol_pointer_EventType_ = {
export default {
POINTERMOVE: 'pointermove',
POINTERDOWN: 'pointerdown',
POINTERUP: 'pointerup',
@@ -15,5 +16,3 @@ var _ol_pointer_EventType_ = {
POINTERLEAVE: 'pointerleave',
POINTERCANCEL: 'pointercancel'
};
export default _ol_pointer_EventType_;