From 2c45de7e126091d0dfe0e65e3423958f78bfca94 Mon Sep 17 00:00:00 2001 From: Tsuguya Touma Date: Mon, 26 Jan 2015 01:07:42 +0900 Subject: [PATCH] add AudioNode inherit. --- webaudioapi/waa.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webaudioapi/waa.d.ts b/webaudioapi/waa.d.ts index f2001418a6..2ca02d2c6c 100644 --- a/webaudioapi/waa.d.ts +++ b/webaudioapi/waa.d.ts @@ -213,7 +213,7 @@ declare var webkitOfflineAudioContext: { * * For performance reasons, practical implementations will need to use block processing, with each AudioNode processing a fixed number of sample-frames of size block-size. In order to get uniform behavior across implementations, we will define this value explicitly. block-size is defined to be 128 sample-frames which corresponds to roughly 3ms at a sample-rate of 44.1KHz. */ -interface AudioNode { +interface AudioNode extends EventTarget { /** * Connects the AudioNode to another AudioNode. *