UNPKG

automation-events

Version:

A module which provides an implementation of an automation event list.

6 lines (4 loc) 256 B
import { ILinearRampToValueAutomationEvent } from '../interfaces'; export const createLinearRampToValueAutomationEvent = (value: number, endTime: number): ILinearRampToValueAutomationEvent => { return { endTime, type: 'linearRampToValue', value }; };