automation-events
Version:
A module which provides an implementation of an automation event list.
19 lines (17 loc) • 586 B
text/typescript
import {
ICancelAndHoldAutomationEvent,
ICancelScheduledValuesAutomationEvent,
IExponentialRampToValueAutomationEvent,
ILinearRampToValueAutomationEvent,
ISetTargetAutomationEvent,
ISetValueAutomationEvent,
ISetValueCurveAutomationEvent
} from '../interfaces';
export type TAutomationEvent =
| ICancelAndHoldAutomationEvent
| ICancelScheduledValuesAutomationEvent
| IExponentialRampToValueAutomationEvent
| ILinearRampToValueAutomationEvent
| ISetTargetAutomationEvent
| ISetValueAutomationEvent
| ISetValueCurveAutomationEvent;