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