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,12 +1,11 @@
/**
* @module ol/webgl/ContextEventType
*/
/**
* @enum {string}
*/
var _ol_webgl_ContextEventType_ = {
export default {
LOST: 'webglcontextlost',
RESTORED: 'webglcontextrestored'
};
export default _ol_webgl_ContextEventType_;