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
@@ -13,7 +13,7 @@ interface SJSOpenEvent extends SockJSSimpleEvent {}
interface SJSCloseEvent extends SockJSSimpleEvent {
code: number;
reason: string;
wasClean: bool;
wasClean: boolean;
}
interface SJSMessageEvent extends SockJSSimpleEvent {
@@ -37,8 +37,8 @@ interface SockJS extends EventTarget {
declare var SockJS: {
prototype: SockJS;
new (url: string, options?: {
debug: bool;
devel: bool;
debug: boolean;
devel: boolean;
protocols_whitelist: string[];
}): SockJS;