UNPKG

automation-events

Version:

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

7 lines (5 loc) 282 B
import { ISetValueAutomationEvent } from '../interfaces'; import { TAutomationEvent } from '../types'; export const isSetValueAutomationEvent = (automationEvent: TAutomationEvent): automationEvent is ISetValueAutomationEvent => { return automationEvent.type === 'setValue'; };