-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.ts
24 lines (21 loc) · 872 Bytes
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
export type {
EffectListItem,
EffectListItemEffect,
EffectLookup,
} from './src/effects'
export type { SynthPresetValues } from './src/SynthPreset'
export type { SampleKitPresetValues } from './src/SampleKitPreset'
export type { Octave, Note, FrequencyRootName } from './src/utils'
export type { ScaleName } from './src/utils/Scales'
export { AutomatableParameter } from './src/AutomatableParameter'
export { Channel } from './src/Channel'
export { Effect } from './src/Effect'
export { EffectChain } from './src/EffectChain'
export { Noise } from './src/Noise'
export { Oscillator } from './src/Oscillator'
export { Sample } from './src/Sample'
export { SampleKit } from './src/SampleKit'
export { Synth } from './src/Synth'
export { SynthPreset } from './src/SynthPreset'
export { utils } from './src/utils'
export { effects, effectsList } from './src/effects'