UNPKG

@theatrejs/theatrejs

Version:

🎮 A JavaScript 2D Game Engine focused on creating pixel art games.

48 lines (41 loc) • 692 B
/** * @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 };