scratch-storage/src/index.js
Christopher Willis-Ford e8d3b19e84 Use getters for Asset and AssetType
Instead of using `Object.assign` to place `Asset` and `AssetType` into
the `ScratchStorage` prototype or constructor, add instance getters and
(deprecated) static getters. This centralizes all the ways to access
these types.
2017-04-21 10:22:44 -07:00

7 lines
158 B
JavaScript

const ScratchStorage = require('./ScratchStorage');
/**
* Export for use with NPM & Node.js.
* @type {ScratchStorage}
*/
module.exports = ScratchStorage;