jsOMS/Message/Response/ResponseType.js
Dennis Eichhorn 94fb96686b
Some checks are pending
CodeQL / Analyze (javascript) (push) Waiting to run
CI / general_module_workflow_js (push) Waiting to run
inspection fixes
2024-05-17 14:15:52 +00:00

16 lines
309 B
JavaScript
Executable File

/**
* Response type enum.
*
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @since 1.0.0
*/
export const ResponseType = Object.freeze({
TEXT: 'text',
JSON: 'json',
DOCUMENT: 'document',
BLOB: 'blob',
ARRAYBUFFER: 'arraybuffer',
DEFAULT: ''
});