mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This adds a (private) provider for integrating with the browser Navigation API.
This provider ensures that interactions with the `Location` service
use the underlying platform navigation rather than the history and
location APIs.
(cherry picked from commit dd09da8ba2)
14 lines
456 B
TypeScript
14 lines
456 B
TypeScript
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|
|
|
|
export {
|
|
DomAdapter as ɵDomAdapter,
|
|
getDOM as ɵgetDOM,
|
|
setRootDomAdapter as ɵsetRootDomAdapter,
|
|
} from './dom_adapter';
|
|
export {NavigationAdapterForLocation as ɵNavigationAdapterForLocation} from './location/navigation_adapter_for_location';
|