@@ -64,7 +64,7 @@ declare module angular.ui {
64
64
reloadOnSearch ?: boolean ;
65
65
}
66
66
67
- interface IStateProvider extends ng . IServiceProvider {
67
+ interface IStateProvider extends angular . IServiceProvider {
68
68
state ( name :string , config :IState ) : IStateProvider ;
69
69
state ( config :IState ) : IStateProvider ;
70
70
decorator ( name ?: string , decorator ?: ( state : IState , parent : Function ) => any ) : any ;
@@ -83,7 +83,7 @@ declare module angular.ui {
83
83
type ( name : string , definition : any , definitionFn ?: any ) : any ;
84
84
}
85
85
86
- interface IUrlRouterProvider extends ng . IServiceProvider {
86
+ interface IUrlRouterProvider extends angular . IServiceProvider {
87
87
when ( whenPath : RegExp , handler : Function ) : IUrlRouterProvider ;
88
88
when ( whenPath : RegExp , handler : any [ ] ) : IUrlRouterProvider ;
89
89
when ( whenPath : RegExp , toPath : string ) : IUrlRouterProvider ;
@@ -145,7 +145,7 @@ declare module angular.ui {
145
145
*
146
146
* @param options Options object.
147
147
*/
148
- go ( to : string , params ?: { } , options ?: IStateOptions ) : ng . IPromise < any > ;
148
+ go ( to : string , params ?: { } , options ?: IStateOptions ) : angular . IPromise < any > ;
149
149
transitionTo ( state : string , params ?: { } , updateLocation ?: boolean ) : void ;
150
150
transitionTo ( state : string , params ?: { } , options ?: IStateOptions ) : void ;
151
151
includes ( state : string , params ?: { } ) : boolean ;
0 commit comments