@@ -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