Big replacement: bool with boolean

This commit is contained in:
Boris Yankov
2013-08-07 16:59:39 +03:00
parent bded8a8af5
commit dd35f69637
128 changed files with 4254 additions and 4240 deletions
+3 -3
View File
@@ -7,11 +7,11 @@ declare module PubSubJS {
}
interface Publish{
publish(message: any, data: any): bool;
publish(message: any, data: any): boolean;
publish(message:any, data:any, sync:bool, immediateExceptions:Function): bool;
publish(message:any, data:any, sync:bool, immediateExceptions:Function): boolean;
publishSync(message: any, data: any): bool;
publishSync(message: any, data: any): boolean;
}
interface Subscribe{