UNPKG

automation-events

Version:

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

6 lines (4 loc) 256 B
import { ICancelScheduledValuesAutomationEvent } from '../interfaces'; export const createCancelScheduledValuesAutomationEvent = (cancelTime: number): ICancelScheduledValuesAutomationEvent => { return { cancelTime, type: 'cancelScheduledValues' }; };