UNPKG

automation-events

Version:

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

9 lines (7 loc) 340 B
import { ICancelScheduledValuesAutomationEvent } from '../interfaces'; import { TAutomationEvent } from '../types'; export const isCancelScheduledValuesAutomationEvent = ( automationEvent: TAutomationEvent ): automationEvent is ICancelScheduledValuesAutomationEvent => { return automationEvent.type === 'cancelScheduledValues'; };