| Index: client/dom/generated/src/frog/RealtimeAnalyserNode.dart | 
| diff --git a/client/dom/generated/src/frog/RealtimeAnalyserNode.dart b/client/dom/generated/src/frog/RealtimeAnalyserNode.dart | 
| index 5370e780a5157db338ad5f1ddb7e30035d661ea6..b9eb6abbd5d091911616072506b37b6e6da49f00 100644 | 
| --- a/client/dom/generated/src/frog/RealtimeAnalyserNode.dart | 
| +++ b/client/dom/generated/src/frog/RealtimeAnalyserNode.dart | 
| @@ -1,15 +1,23 @@ | 
|  | 
| class RealtimeAnalyserNode extends AudioNode native "*RealtimeAnalyserNode" { | 
|  | 
| -  int fftSize; | 
| +  int get fftSize() native "return this.fftSize;"; | 
|  | 
| -  int frequencyBinCount; | 
| +  void set fftSize(int value) native "this.fftSize = value;"; | 
|  | 
| -  num maxDecibels; | 
| +  int get frequencyBinCount() native "return this.frequencyBinCount;"; | 
|  | 
| -  num minDecibels; | 
| +  num get maxDecibels() native "return this.maxDecibels;"; | 
|  | 
| -  num smoothingTimeConstant; | 
| +  void set maxDecibels(num value) native "this.maxDecibels = value;"; | 
| + | 
| +  num get minDecibels() native "return this.minDecibels;"; | 
| + | 
| +  void set minDecibels(num value) native "this.minDecibels = value;"; | 
| + | 
| +  num get smoothingTimeConstant() native "return this.smoothingTimeConstant;"; | 
| + | 
| +  void set smoothingTimeConstant(num value) native "this.smoothingTimeConstant = value;"; | 
|  | 
| void getByteFrequencyData(Uint8Array array) native; | 
|  | 
|  |