mirror of
https://github.com/Karaka-Management/jsOMS.git
synced 2026-01-13 02:38:41 +00:00
25 lines
548 B
JavaScript
25 lines
548 B
JavaScript
/**
|
|
* Response type enum.
|
|
*
|
|
* @copyright Dennis Eichhorn
|
|
* @license OMS License 1.0
|
|
* @version 1.0.0
|
|
* @since 1.0.0
|
|
*/
|
|
(function (jsOMS)
|
|
{
|
|
"use strict";
|
|
|
|
/** @namespace jsOMS.Message.Response */
|
|
jsOMS.Autoloader.defineNamespace('jsOMS.Message.Response');
|
|
|
|
jsOMS.Message.Response.ResponseType = Object.freeze({
|
|
TEXT: 'text',
|
|
JSON: 'json',
|
|
DOCUMENT: 'document',
|
|
BLOB: 'blob',
|
|
ARRAYBUFFER: 'arraybuffer',
|
|
DEFAULT: ''
|
|
});
|
|
}(window.jsOMS = window.jsOMS || {}));
|