/**
* @module CONTENT_TYPES
*/
/**
* The 'audio/mpeg' Content-Type.
* @type {'audio/mpeg'}
* @constant
*
* @memberof module:CONTENT_TYPES
*/
const AUDIO_MPEG = 'audio/mpeg';
/**
* The 'audio/wave' Content-Type.
* @type {'audio/wave'}
* @constant
*
* @memberof module:CONTENT_TYPES
*/
const AUDIO_WAVE = 'audio/wave';
/**
* The 'image/jpeg' Content-Type.
* @type {'image/jpeg'}
* @constant
*
* @memberof module:CONTENT_TYPES
*/
const IMAGE_JPEG = 'image/jpeg';
/**
* The 'image/png' Content-Type.
* @type {'image/png'}
* @constant
*
* @memberof module:CONTENT_TYPES
*/
const IMAGE_PNG = 'image/png';
export {
AUDIO_MPEG,
AUDIO_WAVE,
IMAGE_JPEG,
IMAGE_PNG
};