theatre-events
Version:
A full implementation of a standard event dispatcher for javascript
15 lines • 342 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
/**
* A standard LOW priority constant
*/
exports.LOW_PRIORITY = 255;
/**
* A standard NORMAL priority constant
*/
exports.NORMAL_PRIORITY = 0;
/**
* A standard HIGH priority constant
*/
exports.HIGH_PRIORITY = -255;
//# sourceMappingURL=event-listener.js.map