/**
* @module CONTENTTYPES
*/
/**
* The audio/mpeg Content-Type.
* @type {'audio/mpeg'}
* @constant
*
* @memberof module:CONTENTTYPES
*/
const AUDIOMPEG = 'audio/mpeg';
/**
* The audio/wave Content-Type.
* @type {'audio/wave'}
* @constant
*
* @memberof module:CONTENTTYPES
*/
const AUDIOWAVE = 'audio/wave';
/**
* The image/jpeg Content-Type.
* @type {'image/jpeg'}
* @constant
*
* @memberof module:CONTENTTYPES
*/
const IMAGEJPEG = 'image/jpeg';
/**
* The image/png Content-Type.
* @type {'image/png'}
* @constant
*
* @memberof module:CONTENTTYPES
*/
const IMAGEPNG = 'image/png';
export {
AUDIOMPEG,
AUDIOWAVE,
IMAGEJPEG,
IMAGEPNG
};