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,14 +1,13 @@
/**
* @module ol/format/FormatType
*/
/**
* @enum {string}
*/
var _ol_format_FormatType_ = {
export default {
ARRAY_BUFFER: 'arraybuffer',
JSON: 'json',
TEXT: 'text',
XML: 'xml'
};
export default _ol_format_FormatType_;