mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-11 13:42:52 +00:00
15 lines
497 B
Text
15 lines
497 B
Text
#import <WebAudio/AudioNode.idl>
|
|
#import <WebAudio/AudioParam.idl>
|
|
#import <WebAudio/BaseAudioContext.idl>
|
|
|
|
// https://webaudio.github.io/web-audio-api/#StereoPannerOptions
|
|
dictionary StereoPannerOptions : AudioNodeOptions {
|
|
float pan = 0;
|
|
};
|
|
|
|
// https://webaudio.github.io/web-audio-api/#stereopannernode
|
|
[Exposed=Window]
|
|
interface StereoPannerNode : AudioNode {
|
|
constructor (BaseAudioContext context, optional StereoPannerOptions options = {});
|
|
readonly attribute AudioParam pan;
|
|
};
|