1 | import { Param } from "../core/context/Param.js";
|
2 | import { NormalRange } from "../core/type/Units.js";
|
3 | import { Effect, EffectOptions } from "./Effect.js";
|
4 | export interface FeedbackEffectOptions extends EffectOptions {
|
5 | |
6 |
|
7 |
|
8 |
|
9 |
|
10 |
|
11 |
|
12 |
|
13 |
|
14 |
|
15 | feedback: NormalRange;
|
16 | }
|
17 |
|
18 |
|
19 |
|
20 |
|
21 | export declare abstract class FeedbackEffect<Options extends FeedbackEffectOptions> extends Effect<Options> {
|
22 | readonly name: string;
|
23 | |
24 |
|
25 |
|
26 | private _feedbackGain;
|
27 | |
28 |
|
29 |
|
30 | feedback: Param<"normalRange">;
|
31 | constructor(options: FeedbackEffectOptions);
|
32 | static getDefaults(): FeedbackEffectOptions;
|
33 | dispose(): this;
|
34 | }
|