UNPKG

@theatrejs/theatrejs

Version:

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

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