()
| 95 | } |
| 96 | |
| 97 | override getConfig(): serialization.ConfigDict { |
| 98 | const config = { |
| 99 | rate: this.rate, |
| 100 | noiseShape: this.noiseShape, |
| 101 | seed: this.seed, |
| 102 | }; |
| 103 | const baseConfig = super.getConfig(); |
| 104 | Object.assign(config, baseConfig); |
| 105 | return config; |
| 106 | } |
| 107 | |
| 108 | override dispose(): DisposeResult { |
| 109 | return super.dispose(); |