-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.d.ts
More file actions
56 lines (55 loc) · 3.29 KB
/
Copy pathindex.d.ts
File metadata and controls
56 lines (55 loc) · 3.29 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
// @audio/effect — audio effects umbrella re-exporting every @audio/effect-* atom.
// For smaller bundles, depend directly on the individual atom.
// Dynamics processors live in @audio/dynamics; spatial tools in @audio/spatial; pitch shifting in @audio/shift.
export { default as phaser } from '@audio/effect-phaser'
export { default as flanger } from '@audio/effect-flanger'
export { default as chorus } from '@audio/effect-chorus'
export { default as wah } from '@audio/effect-wah'
export { default as tremolo } from '@audio/effect-tremolo'
export { default as vibrato } from '@audio/effect-vibrato'
export { default as rotary } from '@audio/effect-rotary'
export { default as ringMod } from '@audio/effect-ringmod'
export { default as frequencyShifter } from '@audio/effect-freqshift'
export { default as autoWah } from '@audio/effect-autowah'
export { default as delay } from '@audio/effect-delay'
export { default as multitap } from '@audio/effect-multitap'
export { default as pingPong } from '@audio/effect-pingpong'
export { default as distortion } from '@audio/effect-distortion'
export { default as bitcrusher } from '@audio/effect-bitcrusher'
export { default as exciter } from '@audio/effect-exciter'
export { default as slewLimiter } from '@audio/effect-slew'
export { default as noiseShaping } from '@audio/effect-noiseshaper'
export { default as gain } from '@audio/effect-gain'
export { default as mixer } from '@audio/effect-mixer'
export { default as grainDelay } from '@audio/effect-graindelay'
export { default as lofi } from '@audio/effect-lofi'
export { default as sbr } from '@audio/effect-sbr'
export { default as stutter } from '@audio/effect-stutter'
export { default as subbass } from '@audio/effect-subbass'
export { default as tapeStop } from '@audio/effect-tapestop'
export type { AutoWahOptions } from '@audio/effect-autowah'
export type { BitcrusherOptions } from '@audio/effect-bitcrusher'
export type { ChorusOptions } from '@audio/effect-chorus'
export type { DelayOptions } from '@audio/effect-delay'
export type { DistortionOptions } from '@audio/effect-distortion'
export type { ExciterOptions } from '@audio/effect-exciter'
export type { FlangerOptions } from '@audio/effect-flanger'
export type { FrequencyShifterOptions } from '@audio/effect-freqshift'
export type { GainOptions } from '@audio/effect-gain'
export type { GraindelayOptions } from '@audio/effect-graindelay'
export type { LofiOptions } from '@audio/effect-lofi'
export type { MixerInput } from '@audio/effect-mixer'
export type { MultitapTap, MultitapOptions } from '@audio/effect-multitap'
export type { NoiseShapingOptions } from '@audio/effect-noiseshaper'
export type { PhaserOptions } from '@audio/effect-phaser'
export type { PingPongOptions } from '@audio/effect-pingpong'
export type { RingModOptions } from '@audio/effect-ringmod'
export type { RotaryOptions } from '@audio/effect-rotary'
export type { SbrOptions } from '@audio/effect-sbr'
export type { SlewLimiterOptions } from '@audio/effect-slew'
export type { StutterOptions } from '@audio/effect-stutter'
export type { SubbassOptions } from '@audio/effect-subbass'
export type { TapestopOptions } from '@audio/effect-tapestop'
export type { TremoloOptions } from '@audio/effect-tremolo'
export type { VibratoOptions } from '@audio/effect-vibrato'
export type { WahOptions } from '@audio/effect-wah'