UNPKG

automation-events

Version:

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

6 lines (4 loc) 276 B
import { IExponentialRampToValueAutomationEvent } from '../interfaces'; export const createExponentialRampToValueAutomationEvent = (value: number, endTime: number): IExponentialRampToValueAutomationEvent => { return { endTime, type: 'exponentialRampToValue', value }; };