| Index: client/html/generated/src/interface/AudioNode.dart
|
| diff --git a/client/html/generated/src/interface/RangeException.dart b/client/html/generated/src/interface/AudioNode.dart
|
| similarity index 56%
|
| copy from client/html/generated/src/interface/RangeException.dart
|
| copy to client/html/generated/src/interface/AudioNode.dart
|
| index ceba140894a23e6b4ca43f672ed4f0c1e2460b5c..d29c3b53b34b0d231c06893cdd95617e88fb14c2 100644
|
| --- a/client/html/generated/src/interface/RangeException.dart
|
| +++ b/client/html/generated/src/interface/AudioNode.dart
|
| @@ -4,15 +4,15 @@
|
|
|
| // WARNING: Do not edit - generated code.
|
|
|
| -interface RangeException {
|
| +interface AudioNode {
|
|
|
| - static final int BAD_BOUNDARYPOINTS_ERR = 1;
|
| + AudioContext get context();
|
|
|
| - static final int INVALID_NODE_TYPE_ERR = 2;
|
| + int get numberOfInputs();
|
|
|
| - int get code();
|
| + int get numberOfOutputs();
|
|
|
| - String get message();
|
| + void connect(AudioNode destination, [int output, int input]);
|
|
|
| - String get name();
|
| + void disconnect([int output]);
|
| }
|
|
|