()
| 667 | * @publicApi |
| 668 | */ |
| 669 | export function withHashLocation(): RouterHashLocationFeature { |
| 670 | const providers = [{provide: LocationStrategy, useClass: HashLocationStrategy}]; |
| 671 | return routerFeature(RouterFeatureKind.RouterHashLocationFeature, providers); |
| 672 | } |
| 673 | |
| 674 | /** |
| 675 | * A type alias for providers returned by `withNavigationErrorHandler` for use with `provideRouter`. |
nothing calls this directly
no test coverage detected