/** * 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: '' });