Spaces:
Build error
Build error
File size: 527 Bytes
30c32c8 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 |
const ArgumentType = require('./argument-type');
const ArgumentAlignment = require('./argument-alignment');
const BlockType = require('./block-type');
const BlockShape = require('./block-shape');
const TargetType = require('./target-type');
const Cast = require('../util/cast');
const Clone = require('../util/clone');
const Color = require('../util/color');
const Scratch = {
ArgumentType,
ArgumentAlignment,
BlockType,
BlockShape,
TargetType,
Cast,
Clone,
Color
};
module.exports = Scratch;
|