automation-events
Version:
A module which provides an implementation of an automation event list.
15 lines (14 loc) • 365 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createSetTargetAutomationEvent = void 0;
const createSetTargetAutomationEvent = (target, startTime, timeConstant) => {
return {
startTime,
target,
timeConstant,
type: 'setTarget'
};
};
exports.createSetTargetAutomationEvent = createSetTargetAutomationEvent;