Skip to content

Commit 7020109

Browse files
committed
2 parents db56b64 + 45a6e1a commit 7020109

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

bin/puremvc-typescript-standard-1.0.d.ts

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ declare module puremvc
1010
{
1111
executeCommand( notification:INotification ):void;
1212
registerCommand( notificationName:string, commandClassRef:Function ):void;
13-
hasCommand( notificationName:string ):bool;
13+
hasCommand( notificationName:string ):boolean;
1414
removeCommand( notificationName:string ):void;
1515
}
1616

@@ -19,15 +19,15 @@ declare module puremvc
1919
{
2020
registerCommand( notificationName:string, commandClassRef:Function ):void;
2121
removeCommand( notificationName:string ): void;
22-
hasCommand( notificationName:string ):bool;
22+
hasCommand( notificationName:string ):boolean;
2323
registerProxy( proxy:IProxy ):void;
2424
retrieveProxy( proxyName:string ):IProxy;
2525
removeProxy( proxyName:string ):IProxy;
26-
hasProxy( proxyName:string ):bool;
26+
hasProxy( proxyName:string ):boolean;
2727
registerMediator( mediator:IMediator ):void;
2828
retrieveMediator( mediatorName:string ):IMediator;
2929
removeMediator( mediatorName:string ):IMediator;
30-
hasMediator( mediatorName:string ):bool;
30+
hasMediator( mediatorName:string ):boolean;
3131
notifyObservers( notification:INotification ):void;
3232
}
3333

@@ -48,7 +48,7 @@ declare module puremvc
4848
registerProxy( proxy:IProxy ):void;
4949
removeProxy( proxyName:string ):IProxy;
5050
retrieveProxy( proxyName:string ):IProxy;
51-
hasProxy( proxyName:string ):bool;
51+
hasProxy( proxyName:string ):boolean;
5252
}
5353

5454
export interface INotification
@@ -71,7 +71,7 @@ declare module puremvc
7171
setNotifyMethod( notifyMethod:Function ):void;
7272
setNotifyContext( notifyContext:any ):void;
7373
notifyObserver( notification:INotification ):void;
74-
compareNotifyContext( object:any ):bool;
74+
compareNotifyContext( object:any ):boolean;
7575
}
7676

7777
export interface IProxy
@@ -92,7 +92,7 @@ declare module puremvc
9292
registerMediator( mediator:IMediator ):void;
9393
retrieveMediator( mediatorName:string ):IMediator;
9494
removeMediator( mediatorName:string ):IMediator;
95-
hasMediator( mediatorName:string ):bool;
95+
hasMediator( mediatorName:string ):boolean;
9696
}
9797

9898
export class Observer
@@ -106,7 +106,7 @@ declare module puremvc
106106
private getNotifyContext(): any;
107107
public setNotifyContext(notifyContext: any): void;
108108
public notifyObserver(notification: INotification): void;
109-
public compareNotifyContext(object: any): bool;
109+
public compareNotifyContext(object: any): boolean;
110110
}
111111

112112
export class View
@@ -122,7 +122,7 @@ declare module puremvc
122122
public registerMediator(mediator: IMediator): void;
123123
public retrieveMediator(mediatorName: string): IMediator;
124124
public removeMediator(mediatorName: string): IMediator;
125-
public hasMediator(mediatorName: string): bool;
125+
public hasMediator(mediatorName: string): boolean;
126126
static SINGLETON_MSG: string;
127127
static instance: IView;
128128
static getInstance(): IView;
@@ -138,7 +138,7 @@ declare module puremvc
138138
public initializeController(): void;
139139
public executeCommand(notification: INotification): void;
140140
public registerCommand(notificationName: string, commandClassRef: Function): void;
141-
public hasCommand(notificationName: string): bool;
141+
public hasCommand(notificationName: string): boolean;
142142
public removeCommand(notificationName: string): void;
143143
static instance: IController;
144144
static SINGLETON_MSG: string;
@@ -154,7 +154,7 @@ declare module puremvc
154154
public registerProxy(proxy: IProxy): void;
155155
public removeProxy(proxyName: string): IProxy;
156156
public retrieveProxy(proxyName: string): IProxy;
157-
public hasProxy(proxyName: string): bool;
157+
public hasProxy(proxyName: string): boolean;
158158
static SINGLETON_MSG: string;
159159
static instance: IModel;
160160
static getInstance(): IModel;
@@ -188,15 +188,15 @@ declare module puremvc
188188
public initializeView(): void;
189189
public registerCommand(notificationName: string, commandClassRef: Function): void;
190190
public removeCommand(notificationName: string): void;
191-
public hasCommand(notificationName: string): bool;
191+
public hasCommand(notificationName: string): boolean;
192192
public registerProxy(proxy: IProxy): void;
193193
public retrieveProxy(proxyName: string): IProxy;
194194
public removeProxy(proxyName: string): IProxy;
195-
public hasProxy(proxyName: string): bool;
195+
public hasProxy(proxyName: string): boolean;
196196
public registerMediator(mediator: IMediator): void;
197197
public retrieveMediator(mediatorName: string): IMediator;
198198
public removeMediator(mediatorName: string): IMediator;
199-
public hasMediator(mediatorName: string): bool;
199+
public hasMediator(mediatorName: string): boolean;
200200
public notifyObservers(notification: INotification): void;
201201
public sendNotification(name: string, body?: any, type?: string): void;
202202
static SINGLETON_MSG: string;

0 commit comments

Comments
 (0)