UNPKG

scratch-storage

Version:

Load and store project and asset files for Scratch 3.0

17 lines (15 loc) 255 B
/** * Enumeration of the supported data formats. * @enum {string} */ const DataFormat = { JPG: 'jpg', JSON: 'json', MP3: 'mp3', PNG: 'png', SB2: 'sb2', SB3: 'sb3', SVG: 'svg', WAV: 'wav' }; module.exports = DataFormat;