This repository was archived by the owner on Jul 6, 2018. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -283,8 +283,8 @@ interface ControllerMixin extends ActionHandler {
283
283
replaceRoute ( name : string , ...args : any [ ] ) : void ;
284
284
transitionToRoute ( name : string , ...args : any [ ] ) : void ;
285
285
model : any ;
286
- queryParams : any ;
287
- target : any ;
286
+ queryParams : string [ ] | { [ key : string ] : { type : string } } [ ] ;
287
+ target : Object ;
288
288
}
289
289
const ControllerMixin : Ember . Mixin < ControllerMixin > ;
290
290
@@ -582,17 +582,7 @@ namespace Ember {
582
582
catalogEntriesByType ( type : string ) : any [ ] ;
583
583
}
584
584
585
- class Controller extends Object . extend ( ControllerMixin ) {
586
- replaceRoute ( name : string , ...args : any [ ] ) : void ;
587
- transitionToRoute ( name : string , ...args : any [ ] ) : void ;
588
- controllers : { } ;
589
- model : any ;
590
- needs : string [ ] ;
591
- queryParams : any ;
592
- target : any ;
593
- send ( name : string , ...args : any [ ] ) : void ;
594
- actions : ActionsHash ;
595
- }
585
+ class Controller extends Object . extend ( ControllerMixin ) { }
596
586
/**
597
587
Implements some standard methods for copying an object. Add this mixin to any object you
598
588
create that can create a copy of itself. This mixin is added automatically to the built-in array.
You can’t perform that action at this time.
0 commit comments