()
| 28 | |
| 29 | constructor(options?: Partial<MeterBaseOptions>); |
| 30 | constructor() { |
| 31 | super(optionsFromArguments(MeterBase.getDefaults(), arguments)); |
| 32 | |
| 33 | this.input = this.output = this._analyser = new Analyser({ |
| 34 | context: this.context, |
| 35 | size: 256, |
| 36 | type: "waveform", |
| 37 | }); |
| 38 | } |
| 39 | |
| 40 | dispose(): this { |
| 41 | super.dispose(); |
nothing calls this directly
no test coverage detected