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