/** * @module ol/source/State */ /** * State of the source, one of 'undefined', 'loading', 'ready' or 'error'. * @enum {string} */ export default { UNDEFINED: 'undefined', LOADING: 'loading', READY: 'ready', ERROR: 'error' };