automation-events
Version:
A module which provides an implementation of an automation event list.
27 lines (26 loc) • 880 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
var _automationEvent = require("./automation-event");
Object.keys(_automationEvent).forEach(function (key) {
if (key === "default" || key === "__esModule") return;
if (key in exports && exports[key] === _automationEvent[key]) return;
Object.defineProperty(exports, key, {
enumerable: true,
get: function () {
return _automationEvent[key];
}
});
});
var _persistentAutomationEvent = require("./persistent-automation-event");
Object.keys(_persistentAutomationEvent).forEach(function (key) {
if (key === "default" || key === "__esModule") return;
if (key in exports && exports[key] === _persistentAutomationEvent[key]) return;
Object.defineProperty(exports, key, {
enumerable: true,
get: function () {
return _persistentAutomationEvent[key];
}
});
});