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