automation-events
Version:
A module which provides an implementation of an automation event list.
15 lines (13 loc) • 470 B
text/typescript
import {
IExtendedExponentialRampToValueAutomationEvent,
IExtendedLinearRampToValueAutomationEvent,
ISetTargetAutomationEvent,
ISetValueAutomationEvent,
ISetValueCurveAutomationEvent
} from '../interfaces';
export type TPersistentAutomationEvent =
| IExtendedExponentialRampToValueAutomationEvent
| IExtendedLinearRampToValueAutomationEvent
| ISetTargetAutomationEvent
| ISetValueAutomationEvent
| ISetValueCurveAutomationEvent;