1 | import { Gain } from "../../core/context/Gain.js";
|
2 | import { Param } from "../../core/context/Param.js";
|
3 | import { ToneAudioNode, ToneAudioNodeOptions } from "../../core/context/ToneAudioNode.js";
|
4 | import { Decibels, Frequency } from "../../core/type/Units.js";
|
5 | import { Signal } from "../../signal/Signal.js";
|
6 | import { MultibandSplit } from "../channel/MultibandSplit.js";
|
7 | interface EQ3Options extends ToneAudioNodeOptions {
|
8 | low: Decibels;
|
9 | mid: Decibels;
|
10 | high: Decibels;
|
11 | lowFrequency: Frequency;
|
12 | highFrequency: Frequency;
|
13 | }
|
14 |
|
15 |
|
16 |
|
17 |
|
18 | export declare class EQ3 extends ToneAudioNode<EQ3Options> {
|
19 | readonly name: string;
|
20 | |
21 |
|
22 |
|
23 | readonly input: MultibandSplit;
|
24 | |
25 |
|
26 |
|
27 | readonly output: Gain<"gain">;
|
28 | |
29 |
|
30 |
|
31 | private _multibandSplit;
|
32 | |
33 |
|
34 |
|
35 | private _lowGain;
|
36 | |
37 |
|
38 |
|
39 | private _midGain;
|
40 | |
41 |
|
42 |
|
43 | private _highGain;
|
44 | |
45 |
|
46 |
|
47 | readonly low: Param<"decibels">;
|
48 | |
49 |
|
50 |
|
51 | readonly mid: Param<"decibels">;
|
52 | |
53 |
|
54 |
|
55 | readonly high: Param<"decibels">;
|
56 | |
57 |
|
58 |
|
59 | readonly Q: Signal<"positive">;
|
60 | |
61 |
|
62 |
|
63 | readonly lowFrequency: Signal<"frequency">;
|
64 | |
65 |
|
66 |
|
67 | readonly highFrequency: Signal<"frequency">;
|
68 | protected _internalChannels: ToneAudioNode[];
|
69 | constructor(lowLevel?: Decibels, midLevel?: Decibels, highLevel?: Decibels);
|
70 | constructor(options: Partial<EQ3Options>);
|
71 | static getDefaults(): EQ3Options;
|
72 | /**
|
73 | * Clean up.
|
74 | */
|
75 | dispose(): this;
|
76 | }
|
77 | export {};
|