From ee9f36443f843286512cf7de902d4edf9910cdb4 Mon Sep 17 00:00:00 2001 From: Pedro Ferreira Date: Thu, 11 Dec 2014 23:44:32 +0000 Subject: [PATCH] - update soundjs definitions --- soundjs/soundjs.d.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/soundjs/soundjs.d.ts b/soundjs/soundjs.d.ts index b67408af2..9fb9382f8 100644 --- a/soundjs/soundjs.d.ts +++ b/soundjs/soundjs.d.ts @@ -43,7 +43,7 @@ declare module createjs { // properties defaultNumChannels: number; - enableIOS: boolean; + enableIOS: boolean; // deprecated static MAX_INSTANCES: number; // methods @@ -131,8 +131,10 @@ declare module createjs { // properties gainNode: any; + loop: number; pan: number; panNode: any; + paused: boolean; playState: string; sourceNode: any; src: string; @@ -177,7 +179,7 @@ declare module createjs { isPreloadComplete(src: string): boolean; isPreloadStarted(src: string): boolean; static isSupported(): boolean; - playEmptySound(): void; + static playEmptySound(): void; preload(src: string, instance: Object): void; register(src: string, instances: number): Object; removeAllSounds(src: string): void;