Skip to content

Commit f565863

Browse files
committed
2 parents 5edea18 + 0387549 commit f565863

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

bin/puremvc-typescript-multicore-1.1.d.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -162,8 +162,8 @@ declare module puremvc
162162
public hasProxy(proxyName: string): boolean;
163163
static MULTITON_MSG: string;
164164
static instanceMap: Object;
165-
static getInstance(key): IModel;
166-
static removeModel(key): void;
165+
static getInstance(key:string): IModel;
166+
static removeModel(key:string): void;
167167
}
168168

169169
export class Notification
@@ -188,7 +188,7 @@ declare module puremvc
188188
public view: IView;
189189
public controller: IController;
190190
public multitonKey: string;
191-
constructor (key);
191+
constructor (key:string);
192192
public initializeFacade(): void;
193193
public initializeModel(): void;
194194
public initializeController(): void;
@@ -218,7 +218,7 @@ declare module puremvc
218218
implements INotifier
219219
{
220220
public multitonKey: string;
221-
public initializeNotifier(key): void;
221+
public initializeNotifier(key:string): void;
222222
public sendNotification(name: string, body?: any, type?: string): void;
223223
public facade(): IFacade;
224224
static MULTITON_MSG: string;

0 commit comments

Comments
 (0)