@@ -10,7 +10,7 @@ declare module puremvc
10
10
{
11
11
executeCommand ( notification :INotification ) :void ;
12
12
registerCommand ( notificationName :string , commandClassRef :Function ) :void ;
13
- hasCommand ( notificationName :string ) :bool ;
13
+ hasCommand ( notificationName :string ) :boolean ;
14
14
removeCommand ( notificationName :string ) :void ;
15
15
}
16
16
@@ -19,15 +19,15 @@ declare module puremvc
19
19
{
20
20
registerCommand ( notificationName :string , commandClassRef :Function ) :void ;
21
21
removeCommand ( notificationName :string ) : void ;
22
- hasCommand ( notificationName :string ) :bool ;
22
+ hasCommand ( notificationName :string ) :boolean ;
23
23
registerProxy ( proxy :IProxy ) :void ;
24
24
retrieveProxy ( proxyName :string ) :IProxy ;
25
25
removeProxy ( proxyName :string ) :IProxy ;
26
- hasProxy ( proxyName :string ) :bool ;
26
+ hasProxy ( proxyName :string ) :boolean ;
27
27
registerMediator ( mediator :IMediator ) :void ;
28
28
retrieveMediator ( mediatorName :string ) :IMediator ;
29
29
removeMediator ( mediatorName :string ) :IMediator ;
30
- hasMediator ( mediatorName :string ) :bool ;
30
+ hasMediator ( mediatorName :string ) :boolean ;
31
31
notifyObservers ( notification :INotification ) :void ;
32
32
}
33
33
@@ -48,7 +48,7 @@ declare module puremvc
48
48
registerProxy ( proxy :IProxy ) :void ;
49
49
removeProxy ( proxyName :string ) :IProxy ;
50
50
retrieveProxy ( proxyName :string ) :IProxy ;
51
- hasProxy ( proxyName :string ) :bool ;
51
+ hasProxy ( proxyName :string ) :boolean ;
52
52
}
53
53
54
54
export interface INotification
@@ -71,7 +71,7 @@ declare module puremvc
71
71
setNotifyMethod ( notifyMethod :Function ) :void ;
72
72
setNotifyContext ( notifyContext :any ) :void ;
73
73
notifyObserver ( notification :INotification ) :void ;
74
- compareNotifyContext ( object :any ) :bool ;
74
+ compareNotifyContext ( object :any ) :boolean ;
75
75
}
76
76
77
77
export interface IProxy
@@ -92,7 +92,7 @@ declare module puremvc
92
92
registerMediator ( mediator :IMediator ) :void ;
93
93
retrieveMediator ( mediatorName :string ) :IMediator ;
94
94
removeMediator ( mediatorName :string ) :IMediator ;
95
- hasMediator ( mediatorName :string ) :bool ;
95
+ hasMediator ( mediatorName :string ) :boolean ;
96
96
}
97
97
98
98
export class Observer
@@ -106,7 +106,7 @@ declare module puremvc
106
106
private getNotifyContext ( ) : any ;
107
107
public setNotifyContext ( notifyContext : any ) : void ;
108
108
public notifyObserver ( notification : INotification ) : void ;
109
- public compareNotifyContext ( object : any ) : bool ;
109
+ public compareNotifyContext ( object : any ) : boolean ;
110
110
}
111
111
112
112
export class View
@@ -122,7 +122,7 @@ declare module puremvc
122
122
public registerMediator ( mediator : IMediator ) : void ;
123
123
public retrieveMediator ( mediatorName : string ) : IMediator ;
124
124
public removeMediator ( mediatorName : string ) : IMediator ;
125
- public hasMediator ( mediatorName : string ) : bool ;
125
+ public hasMediator ( mediatorName : string ) : boolean ;
126
126
static SINGLETON_MSG : string ;
127
127
static instance : IView ;
128
128
static getInstance ( ) : IView ;
@@ -138,7 +138,7 @@ declare module puremvc
138
138
public initializeController ( ) : void ;
139
139
public executeCommand ( notification : INotification ) : void ;
140
140
public registerCommand ( notificationName : string , commandClassRef : Function ) : void ;
141
- public hasCommand ( notificationName : string ) : bool ;
141
+ public hasCommand ( notificationName : string ) : boolean ;
142
142
public removeCommand ( notificationName : string ) : void ;
143
143
static instance : IController ;
144
144
static SINGLETON_MSG : string ;
@@ -154,7 +154,7 @@ declare module puremvc
154
154
public registerProxy ( proxy : IProxy ) : void ;
155
155
public removeProxy ( proxyName : string ) : IProxy ;
156
156
public retrieveProxy ( proxyName : string ) : IProxy ;
157
- public hasProxy ( proxyName : string ) : bool ;
157
+ public hasProxy ( proxyName : string ) : boolean ;
158
158
static SINGLETON_MSG : string ;
159
159
static instance : IModel ;
160
160
static getInstance ( ) : IModel ;
@@ -188,15 +188,15 @@ declare module puremvc
188
188
public initializeView ( ) : void ;
189
189
public registerCommand ( notificationName : string , commandClassRef : Function ) : void ;
190
190
public removeCommand ( notificationName : string ) : void ;
191
- public hasCommand ( notificationName : string ) : bool ;
191
+ public hasCommand ( notificationName : string ) : boolean ;
192
192
public registerProxy ( proxy : IProxy ) : void ;
193
193
public retrieveProxy ( proxyName : string ) : IProxy ;
194
194
public removeProxy ( proxyName : string ) : IProxy ;
195
- public hasProxy ( proxyName : string ) : bool ;
195
+ public hasProxy ( proxyName : string ) : boolean ;
196
196
public registerMediator ( mediator : IMediator ) : void ;
197
197
public retrieveMediator ( mediatorName : string ) : IMediator ;
198
198
public removeMediator ( mediatorName : string ) : IMediator ;
199
- public hasMediator ( mediatorName : string ) : bool ;
199
+ public hasMediator ( mediatorName : string ) : boolean ;
200
200
public notifyObservers ( notification : INotification ) : void ;
201
201
public sendNotification ( name : string , body ?: any , type ?: string ) : void ;
202
202
static SINGLETON_MSG : string ;
0 commit comments