UNPKG

scratch-storage

Version:

Load and store project and asset files for Scratch 3.0

14 lines (12 loc) 223 B
/** * Enumeration of the supported data formats. * @type {Object.<string,string>} */ const DataFormat = { JSON: 'json', PNG: 'png', SB2: 'sb2', SVG: 'svg', WAV: 'wav' }; module.exports = DataFormat;