mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-01 12:07:14 +02:00
These no longer serve any purpose now that we run the IDLGenerator on all of these files at once.
13 lines
396 B
Plaintext
13 lines
396 B
Plaintext
// 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;
|
|
};
|