import { ICancelScheduledValuesAutomationEvent } from '../interfaces';
import { TAutomationEvent } from '../types';

export const isCancelScheduledValuesAutomationEvent = (
    automationEvent: TAutomationEvent
): automationEvent is ICancelScheduledValuesAutomationEvent => {
    return automationEvent.type === 'cancelScheduledValues';
};
