automation-events
Version:
A module which provides an implementation of an automation event list.
10 lines (9 loc) • 355 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.isCancelScheduledValuesAutomationEvent = void 0;
const isCancelScheduledValuesAutomationEvent = automationEvent => {
return automationEvent.type === 'cancelScheduledValues';
};
exports.isCancelScheduledValuesAutomationEvent = isCancelScheduledValuesAutomationEvent;