@@ -162,8 +162,8 @@ declare module puremvc
162
162
public hasProxy ( proxyName : string ) : boolean ;
163
163
static MULTITON_MSG : string ;
164
164
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 ;
167
167
}
168
168
169
169
export class Notification
@@ -188,7 +188,7 @@ declare module puremvc
188
188
public view : IView ;
189
189
public controller : IController ;
190
190
public multitonKey : string ;
191
- constructor ( key ) ;
191
+ constructor ( key : string ) ;
192
192
public initializeFacade ( ) : void ;
193
193
public initializeModel ( ) : void ;
194
194
public initializeController ( ) : void ;
@@ -218,7 +218,7 @@ declare module puremvc
218
218
implements INotifier
219
219
{
220
220
public multitonKey : string ;
221
- public initializeNotifier ( key ) : void ;
221
+ public initializeNotifier ( key : string ) : void ;
222
222
public sendNotification ( name : string , body ?: any , type ?: string ) : void ;
223
223
public facade ( ) : IFacade ;
224
224
static MULTITON_MSG : string ;
0 commit comments