Skip to content

Commit

Permalink
Merge pull request #5 from sparkbuzz/master
Browse files Browse the repository at this point in the history
Added type definitions for some implicitly typed parameters.
  • Loading branch information
cliffhall committed Jun 15, 2015
2 parents 5a51f50 + 12738bf commit 0387549
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bin/puremvc-typescript-multicore-1.1.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,8 +162,8 @@ declare module puremvc
public hasProxy(proxyName: string): boolean;
static MULTITON_MSG: string;
static instanceMap: Object;
static getInstance(key): IModel;
static removeModel(key): void;
static getInstance(key:string): IModel;
static removeModel(key:string): void;
}

export class Notification
Expand All @@ -188,7 +188,7 @@ declare module puremvc
public view: IView;
public controller: IController;
public multitonKey: string;
constructor (key);
constructor (key:string);
public initializeFacade(): void;
public initializeModel(): void;
public initializeController(): void;
Expand Down Expand Up @@ -218,7 +218,7 @@ declare module puremvc
implements INotifier
{
public multitonKey: string;
public initializeNotifier(key): void;
public initializeNotifier(key:string): void;
public sendNotification(name: string, body?: any, type?: string): void;
public facade(): IFacade;
static MULTITON_MSG: string;
Expand Down

0 comments on commit 0387549

Please # to comment.