mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
This commit renames an internal function that implements the core bootstrap logic. The function is exported as a private symbol (with `ɵ`), but in order to avoid any possible confusion, we include "internal" into the function name as well. PR Close #45896
20 lines
1.4 KiB
TypeScript
20 lines
1.4 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
|
|
*/
|
|
|
|
export {ɵgetDOM} from '@angular/common';
|
|
export {initDomAdapter as ɵinitDomAdapter, INTERNAL_BROWSER_PLATFORM_PROVIDERS as ɵINTERNAL_BROWSER_PLATFORM_PROVIDERS} from './browser';
|
|
export {BrowserDomAdapter as ɵBrowserDomAdapter} from './browser/browser_adapter';
|
|
export {TRANSITION_ID as ɵTRANSITION_ID} from './browser/server-transition';
|
|
export {BrowserGetTestability as ɵBrowserGetTestability} from './browser/testability';
|
|
export {escapeHtml as ɵescapeHtml} from './browser/transfer_state';
|
|
export {DomRendererFactory2 as ɵDomRendererFactory2, flattenStyles as ɵflattenStyles, NAMESPACE_URIS as ɵNAMESPACE_URIS, shimContentAttribute as ɵshimContentAttribute, shimHostAttribute as ɵshimHostAttribute} from './dom/dom_renderer';
|
|
export {DomEventsPlugin as ɵDomEventsPlugin} from './dom/events/dom_events';
|
|
export {HammerGesturesPlugin as ɵHammerGesturesPlugin} from './dom/events/hammer_gestures';
|
|
export {KeyEventsPlugin as ɵKeyEventsPlugin} from './dom/events/key_events';
|
|
export {DomSharedStylesHost as ɵDomSharedStylesHost, SharedStylesHost as ɵSharedStylesHost} from './dom/shared_styles_host';
|
|
export {DomSanitizerImpl as ɵDomSanitizerImpl} from './security/dom_sanitization_service';
|