File size: 1,417 Bytes
8ea4d6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import { AutomationEventList } from './classes/automation-event-list';
import { createCancelAndHoldAutomationEvent } from './functions/create-cancel-and-hold-automation-event';
import { createCancelScheduledValuesAutomationEvent } from './functions/create-cancel-scheduled-values-automation-event';
import { createExponentialRampToValueAutomationEvent } from './functions/create-exponential-ramp-to-value-automation-event';
import { createLinearRampToValueAutomationEvent } from './functions/create-linear-ramp-to-value-automation-event';
import { createSetTargetAutomationEvent } from './functions/create-set-target-automation-event';
import { createSetValueAutomationEvent } from './functions/create-set-value-automation-event';
import { createSetValueCurveAutomationEvent } from './functions/create-set-value-curve-automation-event';

/*
 * @todo Explicitly referencing the barrel file seems to be necessary when enabling the
 * isolatedModules compiler option.
 */
export * from './interfaces/index';
export * from './types/index';

export { AutomationEventList };

export { createCancelAndHoldAutomationEvent };

export { createCancelScheduledValuesAutomationEvent };

export { createExponentialRampToValueAutomationEvent };

export { createLinearRampToValueAutomationEvent };

export { createSetTargetAutomationEvent };

export { createSetValueAutomationEvent };

export { createSetValueCurveAutomationEvent };