From 00ac8bd29c2b32f964616ed607b8f7b4dc4d8a16 Mon Sep 17 00:00:00 2001 From: Jason Saelhof Date: Wed, 25 Mar 2015 09:41:19 -0600 Subject: [PATCH] Add registerSounds method declaration --- soundjs/soundjs.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/soundjs/soundjs.d.ts b/soundjs/soundjs.d.ts index f719be5b32..90e50200d6 100644 --- a/soundjs/soundjs.d.ts +++ b/soundjs/soundjs.d.ts @@ -177,6 +177,7 @@ declare module createjs { static registerManifest(manifest: Object[], basePath: string): Object; static registerPlugins(plugins: any[]): boolean; static registerSound(src: string | Object, id?: string, data?: number | Object, basePath?: string): Object; + static registerSounds(sounds: Object[], basePath?: string): Object[]; static removeAllSounds(): void; static removeManifest(manifest: any[], basePath: string): Object; static removeSound(src: string | Object, basePath: string): boolean;