UNPKG

automation-events

Version:

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

10 lines (8 loc) 346 B
import { IExtendedExponentialRampToValueAutomationEvent } from '../interfaces'; export const createExtendedExponentialRampToValueAutomationEvent = ( value: number, endTime: number, insertTime: number ): IExtendedExponentialRampToValueAutomationEvent => { return { endTime, insertTime, type: 'exponentialRampToValue', value }; };