Skip to content

Changed bool types to boolean #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 12, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions bin/puremvc-typescript-standard-1.0.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ declare module puremvc
{
executeCommand( notification:INotification ):void;
registerCommand( notificationName:string, commandClassRef:Function ):void;
hasCommand( notificationName:string ):bool;
hasCommand( notificationName:string ):boolean;
removeCommand( notificationName:string ):void;
}

Expand All @@ -19,15 +19,15 @@ declare module puremvc
{
registerCommand( notificationName:string, commandClassRef:Function ):void;
removeCommand( notificationName:string ): void;
hasCommand( notificationName:string ):bool;
hasCommand( notificationName:string ):boolean;
registerProxy( proxy:IProxy ):void;
retrieveProxy( proxyName:string ):IProxy;
removeProxy( proxyName:string ):IProxy;
hasProxy( proxyName:string ):bool;
hasProxy( proxyName:string ):boolean;
registerMediator( mediator:IMediator ):void;
retrieveMediator( mediatorName:string ):IMediator;
removeMediator( mediatorName:string ):IMediator;
hasMediator( mediatorName:string ):bool;
hasMediator( mediatorName:string ):boolean;
notifyObservers( notification:INotification ):void;
}

Expand All @@ -48,7 +48,7 @@ declare module puremvc
registerProxy( proxy:IProxy ):void;
removeProxy( proxyName:string ):IProxy;
retrieveProxy( proxyName:string ):IProxy;
hasProxy( proxyName:string ):bool;
hasProxy( proxyName:string ):boolean;
}

export interface INotification
Expand All @@ -71,7 +71,7 @@ declare module puremvc
setNotifyMethod( notifyMethod:Function ):void;
setNotifyContext( notifyContext:any ):void;
notifyObserver( notification:INotification ):void;
compareNotifyContext( object:any ):bool;
compareNotifyContext( object:any ):boolean;
}

export interface IProxy
Expand All @@ -92,7 +92,7 @@ declare module puremvc
registerMediator( mediator:IMediator ):void;
retrieveMediator( mediatorName:string ):IMediator;
removeMediator( mediatorName:string ):IMediator;
hasMediator( mediatorName:string ):bool;
hasMediator( mediatorName:string ):boolean;
}

export class Observer
Expand All @@ -106,7 +106,7 @@ declare module puremvc
private getNotifyContext(): any;
public setNotifyContext(notifyContext: any): void;
public notifyObserver(notification: INotification): void;
public compareNotifyContext(object: any): bool;
public compareNotifyContext(object: any): boolean;
}

export class View
Expand All @@ -122,7 +122,7 @@ declare module puremvc
public registerMediator(mediator: IMediator): void;
public retrieveMediator(mediatorName: string): IMediator;
public removeMediator(mediatorName: string): IMediator;
public hasMediator(mediatorName: string): bool;
public hasMediator(mediatorName: string): boolean;
static SINGLETON_MSG: string;
static instance: IView;
static getInstance(): IView;
Expand All @@ -138,7 +138,7 @@ declare module puremvc
public initializeController(): void;
public executeCommand(notification: INotification): void;
public registerCommand(notificationName: string, commandClassRef: Function): void;
public hasCommand(notificationName: string): bool;
public hasCommand(notificationName: string): boolean;
public removeCommand(notificationName: string): void;
static instance: IController;
static SINGLETON_MSG: string;
Expand All @@ -154,7 +154,7 @@ declare module puremvc
public registerProxy(proxy: IProxy): void;
public removeProxy(proxyName: string): IProxy;
public retrieveProxy(proxyName: string): IProxy;
public hasProxy(proxyName: string): bool;
public hasProxy(proxyName: string): boolean;
static SINGLETON_MSG: string;
static instance: IModel;
static getInstance(): IModel;
Expand Down Expand Up @@ -188,15 +188,15 @@ declare module puremvc
public initializeView(): void;
public registerCommand(notificationName: string, commandClassRef: Function): void;
public removeCommand(notificationName: string): void;
public hasCommand(notificationName: string): bool;
public hasCommand(notificationName: string): boolean;
public registerProxy(proxy: IProxy): void;
public retrieveProxy(proxyName: string): IProxy;
public removeProxy(proxyName: string): IProxy;
public hasProxy(proxyName: string): bool;
public hasProxy(proxyName: string): boolean;
public registerMediator(mediator: IMediator): void;
public retrieveMediator(mediatorName: string): IMediator;
public removeMediator(mediatorName: string): IMediator;
public hasMediator(mediatorName: string): bool;
public hasMediator(mediatorName: string): boolean;
public notifyObservers(notification: INotification): void;
public sendNotification(name: string, body?: any, type?: string): void;
static SINGLETON_MSG: string;
Expand Down