automation-events
Version:
A module which provides an implementation of an automation event list.
15 lines (14 loc) • 452 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.createExtendedExponentialRampToValueAutomationEvent = void 0;
const createExtendedExponentialRampToValueAutomationEvent = (value, endTime, insertTime) => {
return {
endTime,
insertTime,
type: 'exponentialRampToValue',
value
};
};
exports.createExtendedExponentialRampToValueAutomationEvent = createExtendedExponentialRampToValueAutomationEvent;