mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-02 01:08:48 +00:00
16 lines
504 B
Text
16 lines
504 B
Text
#import <WebAudio/AudioNode.idl>
|
|
#import <WebAudio/AudioParam.idl>
|
|
#import <WebAudio/BaseAudioContext.idl>
|
|
|
|
// https://webaudio.github.io/web-audio-api/#DelayOptions
|
|
dictionary DelayOptions : AudioNodeOptions {
|
|
double maxDelayTime = 1;
|
|
double delayTime = 0;
|
|
};
|
|
|
|
// https://webaudio.github.io/web-audio-api/#DelayNode
|
|
[Exposed=Window]
|
|
interface DelayNode : AudioNode {
|
|
constructor (BaseAudioContext context, optional DelayOptions options = {});
|
|
readonly attribute AudioParam delayTime;
|
|
};
|