mirror of
https://github.com/scratchfoundation/scratch-vm.git
synced 2024-12-26 16:02:54 -05:00
7 lines
103 B
JavaScript
7 lines
103 B
JavaScript
|
const ReporterScope = {
|
||
|
GLOBAL: 'global',
|
||
|
SPRITE: 'sprite'
|
||
|
};
|
||
|
|
||
|
module.exports = ReporterScope;
|