mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-23 14:32:59 -05:00
fix: export ArgumentType and BlockType
This commit is contained in:
parent
9176da8332
commit
9355432337
1 changed files with 7 additions and 0 deletions
|
@ -1,3 +1,10 @@
|
||||||
const VirtualMachine = require('./virtual-machine');
|
const VirtualMachine = require('./virtual-machine');
|
||||||
|
|
||||||
|
const ArgumentType = require('./extension-support/argument-type');
|
||||||
|
const BlockType = require('./extension-support/block-type');
|
||||||
|
|
||||||
module.exports = VirtualMachine;
|
module.exports = VirtualMachine;
|
||||||
|
|
||||||
|
// TODO: ESM named exports will save us all
|
||||||
|
module.exports.ArgumentType = ArgumentType;
|
||||||
|
module.exports.BlockType = BlockType;
|
||||||
|
|
Loading…
Reference in a new issue