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

export const isSetTargetAutomationEvent = (automationEvent: TAutomationEvent): automationEvent is ISetTargetAutomationEvent => {
    return automationEvent.type === 'setTarget';
};
