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

export const createSetTargetAutomationEvent = (target: number, startTime: number, timeConstant: number): ISetTargetAutomationEvent => {
    return { startTime, target, timeConstant, type: 'setTarget' };
};
