Transformed

This commit is contained in:
Tim Schaub
2017-12-11 16:29:33 -07:00
parent 1cdb6a66f0
commit 7f47883c48
737 changed files with 22216 additions and 21609 deletions

View File

@@ -1,11 +1,14 @@
goog.provide('ol.ImageState');
/**
* @module ol/ImageState
*/
/**
* @enum {number}
*/
ol.ImageState = {
var _ol_ImageState_ = {
IDLE: 0,
LOADING: 1,
LOADED: 2,
ERROR: 3
};
export default _ol_ImageState_;