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