Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
cliffhall committed Oct 27, 2018
2 parents 5edea18 + 0387549 commit f565863
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 f565863

Please sign in to comment.