File size: 430 Bytes
30c32c8
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
 * Indicate the scope for a reporter's value.
 * @enum {string}
 */
const ReporterScope = {
    /**
     * This reporter's value is global and does not depend on context.
     */
    GLOBAL: 'global',

    /**
     * This reporter's value is specific to a particular target/sprite.
     * Another target may have a different value or may not even have a value.
     */
    TARGET: 'target'
};

module.exports = ReporterScope;