Multiple bool => boolean fixes

This commit is contained in:
Boris Yankov
2013-08-07 18:02:05 +03:00
parent 38888208fb
commit f677cca98d
36 changed files with 183 additions and 185 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ declare module PubSubJS {
interface Publish{
publish(message: any, data: any): boolean;
publish(message:any, data:any, sync:bool, immediateExceptions:Function): boolean;
publish(message:any, data:any, sync:boolean, immediateExceptions:Function): boolean;
publishSync(message: any, data: any): boolean;
}