automation-events
Version:
A module which provides an implementation of an automation event list.
9 lines (7 loc) • 344 B
text/typescript
import { IExponentialRampToValueAutomationEvent } from '../interfaces';
import { TAutomationEvent } from '../types';
export const isExponentialRampToValueAutomationEvent = (
automationEvent: TAutomationEvent
): automationEvent is IExponentialRampToValueAutomationEvent => {
return automationEvent.type === 'exponentialRampToValue';
};