| 8 | import { readOnly } from "../core/util/Interface"; |
| 9 | |
| 10 | export interface ChorusOptions extends StereoFeedbackEffectOptions { |
| 11 | frequency: Frequency; |
| 12 | delayTime: Milliseconds; |
| 13 | depth: NormalRange; |
| 14 | type: ToneOscillatorType; |
| 15 | spread: Degrees; |
| 16 | } |
| 17 | |
| 18 | /** |
| 19 | * Chorus is a stereo chorus effect composed of a left and right delay with an [[LFO]] applied to the delayTime of each channel. |
nothing calls this directly
no outgoing calls
no test coverage detected