mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-04-26 17:55:07 +02:00
15 lines
511 B
Plaintext
15 lines
511 B
Plaintext
#import <DOM/Event.idl>
|
|
#import <WebAudio/AudioBuffer.idl>
|
|
|
|
// https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEvent
|
|
[Exposed=Window]
|
|
interface OfflineAudioCompletionEvent : Event {
|
|
constructor(DOMString type, OfflineAudioCompletionEventInit eventInitDict);
|
|
readonly attribute AudioBuffer renderedBuffer;
|
|
};
|
|
|
|
// https://webaudio.github.io/web-audio-api/#OfflineAudioCompletionEventInit
|
|
dictionary OfflineAudioCompletionEventInit : EventInit {
|
|
required AudioBuffer renderedBuffer;
|
|
};
|