mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
14 lines
511 B
Text
14 lines
511 B
Text
#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;
|
|
};
|