mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 23:53:20 +00:00
16 lines
509 B
Text
16 lines
509 B
Text
![]() |
#import <WebAudio/AudioNode.idl>
|
||
|
#import <WebAudio/AudioParam.idl>
|
||
|
#import <WebAudio/BaseAudioContext.idl>
|
||
|
|
||
|
// https://webaudio.github.io/web-audio-api/#ConstantSourceOptions
|
||
|
dictionary ConstantSourceOptions {
|
||
|
float offset = 1;
|
||
|
};
|
||
|
|
||
|
// https://webaudio.github.io/web-audio-api/#ConstantSourceNode
|
||
|
[Exposed=Window]
|
||
|
interface ConstantSourceNode : AudioScheduledSourceNode {
|
||
|
constructor (BaseAudioContext context, optional ConstantSourceOptions options = {});
|
||
|
readonly attribute AudioParam offset;
|
||
|
};
|