Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

OfflineAudioCompletionEvent

The Web Audio API OfflineAudioCompletionEvent interface represents events that occur when the processing of an OfflineAudioContext is terminated. The complete event implements this interface.

interface OfflineAudioCompletionEvent extends Event {
readonly renderedBuffer: AudioBuffer;
}
var OfflineAudioCompletionEvent: {
new (type: string, eventInitDict: OfflineAudioCompletionEventInit): OfflineAudioCompletionEvent;
}
;

§Extends

§Properties

§
readonly renderedBuffer: AudioBuffer
[src]