@@ -8,10 +8,12 @@ import {
88} from "./core/scope/interface.ts" ;
99import { NgModule as TNgModule } from "./core/di/ng-module/ng-module.js" ;
1010import { InjectorService as TInjectorService } from "./core/di/internal-injector.js" ;
11+ import { AnchorScrollProvider as TAnchorScrollProvider } from "./services/anchor-scroll/anchor-scroll.js" ;
1112import {
12- AnchorScrollProvider as TAnchorScrollProvider ,
13+ AnchorScrollFunction as TAnchorScrollFunction ,
1314 AnchorScrollService as TAnchorScrollService ,
14- } from "./services/anchor-scroll/anchor-scroll.js" ;
15+ AnchorScrollObject as TAnchorScrollObject ,
16+ } from "./services/anchor-scroll/interface.ts" ;
1517import { ControllerService as TControllerService } from "./core/controller/interface.ts" ;
1618import { ExceptionHandler as TExceptionHandler } from "./services/exception/interface.ts" ;
1719import { ParseService as TParseService } from "./core/parse/interface.ts" ;
@@ -101,6 +103,7 @@ import {
101103} from "./router/state/interface.ts" ;
102104import { StateObject as TStateObject } from "./router/state/state-object.js" ;
103105import { StateRegistryProvider as TStateRegistryProvider } from "./router/state/state-registry.js" ;
106+ import { IViewScrollService } from "./router/scroll/interface.ts" ;
104107declare global {
105108 interface Function {
106109 $inject ?: readonly string [ ] | undefined ;
@@ -165,6 +168,7 @@ declare global {
165168 type TemplateRequestService = TTemplateRequestService ;
166169 type UrlService = TUrlService ;
167170 type ViewService = TViewService ;
171+ type ViewScrollService = IViewScrollService ;
168172 type ErrorHandlingConfig = TErrorHandlingConfig ;
169173 type ListenerFn = TListenerFn ;
170174 type Listener = TListener ;
@@ -193,5 +197,7 @@ declare global {
193197 type StateDeclaration = TStateDeclaration ;
194198 type BuiltStateDeclaration = TBuiltStateDeclaration ;
195199 type StateObject = TStateObject ;
200+ type AnchorScrollFunction = TAnchorScrollFunction ;
201+ type AnchorScrollObject = TAnchorScrollObject ;
196202 }
197203}
0 commit comments