mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
After the move of the `TransferState` logic, this file only contains a module that used to have the `TransferState` in provider list (but was refactored a while ago after `TransferState` became tree-shakable). PR Close #49222
23 lines
1.3 KiB
TypeScript
23 lines
1.3 KiB
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.io/license
|
|
*/
|
|
|
|
// Re-export TransferState to the public API of the `platform-browser` for backwards-compatibility.
|
|
export {ɵmakeStateKey as makeStateKey, ɵStateKey as StateKey, ɵTransferState as TransferState} from '@angular/core';
|
|
export {ApplicationConfig, bootstrapApplication, BrowserModule, createApplication, platformBrowser, provideProtractorTestingSupport} from './browser';
|
|
export {Meta, MetaDefinition} from './browser/meta';
|
|
export {Title} from './browser/title';
|
|
export {disableDebugTools, enableDebugTools} from './browser/tools/tools';
|
|
export {BrowserTransferStateModule} from './browser/transfer_state_module';
|
|
export {By} from './dom/debug/by';
|
|
export {REMOVE_STYLES_ON_COMPONENT_DESTROY} from './dom/dom_renderer';
|
|
export {EVENT_MANAGER_PLUGINS, EventManager} from './dom/events/event_manager';
|
|
export {HAMMER_GESTURE_CONFIG, HAMMER_LOADER, HammerGestureConfig, HammerLoader, HammerModule} from './dom/events/hammer_gestures';
|
|
export {DomSanitizer, SafeHtml, SafeResourceUrl, SafeScript, SafeStyle, SafeUrl, SafeValue} from './security/dom_sanitization_service';
|
|
|
|
export * from './private_export';
|
|
export {VERSION} from './version';
|