UNPKG

automation-events

Version:

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

9 lines (7 loc) 324 B
import { ILinearRampToValueAutomationEvent } from '../interfaces'; import { TAutomationEvent } from '../types'; export const isLinearRampToValueAutomationEvent = ( automationEvent: TAutomationEvent ): automationEvent is ILinearRampToValueAutomationEvent => { return automationEvent.type === 'linearRampToValue'; };