File tree 3 files changed +5
-4
lines changed
3 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
/** @module common */ /** for typedoc */
2
+ export * from "./interface" ;
2
3
export * from "./common" ;
3
4
export * from "./coreservices" ;
4
5
export * from "./glob" ;
Original file line number Diff line number Diff line change 6
6
7
7
export * from "./core" ;
8
8
9
+ export * from "./ng1/interface" ;
9
10
export * from "./ng1/services" ;
10
11
export * from "./ng1/statebuilders/views" ;
11
12
Original file line number Diff line number Diff line change @@ -451,10 +451,9 @@ export interface StateDeclaration {
451
451
* }
452
452
* })
453
453
*/
454
- redirectTo ?: (
455
- ( $transition$ : Transition ) => TargetState |
456
- { state : ( string | StateDeclaration ) , params : { [ key : string ] : any } } |
457
- string
454
+ redirectTo ?: ( string |
455
+ ( ( $transition$ : Transition ) => TargetState ) |
456
+ { state : ( string | StateDeclaration ) , params : { [ key : string ] : any } }
458
457
)
459
458
460
459
/**
You can’t perform that action at this time.
0 commit comments