import { IExponentialRampToValueAutomationEvent } from '../interfaces';

export const createExponentialRampToValueAutomationEvent = (value: number, endTime: number): IExponentialRampToValueAutomationEvent => {
    return { endTime, type: 'exponentialRampToValue', value };
};
