LibWeb: Add stub IDL interface for AudioParam

An AudioParam is a fundamental building block in WebAudio as it controls
the value of an individual parameter of an AudioNode, such as volume.
This commit is contained in:
Shannon Booth 2024-04-28 12:26:30 +12:00 committed by Andreas Kling
commit 5ae0ac7b73
Notes: sideshowbarker 2024-07-17 02:28:18 +09:00
7 changed files with 213 additions and 0 deletions

View file

@ -681,6 +681,7 @@ class Table;
namespace Web::WebAudio {
class AudioContext;
class AudioParam;
class BaseAudioContext;
class OfflineAudioContext;
class PeriodicWave;