mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2025-01-12 07:45:41 -05:00
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
const {Record} = require('immutable');
|
|
|
|
const MonitorRecord = Record({
|
|
id: null,
|
|
opcode: null,
|
|
value: null,
|
|
params: null
|
|
});
|
|
|
|
module.exports = MonitorRecord;
|