constants/contenttypes.js

/**
 * @module CONTENTTYPES
 */

/**
 * The audio/mpeg Content-Type.
 * @type {'audio/mpeg'}
 * @constant
 *
 * @memberof module:CONTENTTYPES
 */
const AUDIO_MPEG = 'audio/mpeg';

/**
 * The audio/wave Content-Type.
 * @type {'audio/wave'}
 * @constant
 *
 * @memberof module:CONTENTTYPES
 */
const AUDIO_WAVE = 'audio/wave';

/**
 * The image/jpeg Content-Type.
 * @type {'image/jpeg'}
 * @constant
 *
 * @memberof module:CONTENTTYPES
 */
const IMAGE_JPEG = 'image/jpeg';

/**
 * The image/png Content-Type.
 * @type {'image/png'}
 * @constant
 *
 * @memberof module:CONTENTTYPES
 */
const IMAGE_PNG = 'image/png';

export {

    AUDIO_MPEG,
    AUDIO_WAVE,
    IMAGE_JPEG,
    IMAGE_PNG
};