Expose more AudioParam methods

This commit is contained in:
Fernando Jiménez Moreno 2018-06-29 11:55:45 +02:00
parent 97aa142993
commit 986c2f7842
3 changed files with 35 additions and 3 deletions

View file

@ -27,6 +27,6 @@ interface AudioParam {
// AudioParam setValueCurveAtTime(sequence<float> values,
// double startTime,
// double duration);
// AudioParam cancelScheduledValues(double cancelTime);
// AudioParam cancelAndHoldAtTime(double cancelTime);
AudioParam cancelScheduledValues(double cancelTime);
AudioParam cancelAndHoldAtTime(double cancelTime);
};