mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
The platform-server init entry-point imported code from another entry-point using a relative import. This resulted in the code to be bundled into the `init` entry-point as well. This has no breaking impact but resulted in a little code duplication that we should clean up. PR Close #45405
11 lines
507 B
TypeScript
11 lines
507 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.io/license
|
|
*/
|
|
|
|
export {setDomTypes as ɵsetDomTypes} from './domino_adapter';
|
|
export {INTERNAL_SERVER_PLATFORM_PROVIDERS as ɵINTERNAL_SERVER_PLATFORM_PROVIDERS, SERVER_RENDER_PROVIDERS as ɵSERVER_RENDER_PROVIDERS} from './server';
|
|
export {ServerRendererFactory2 as ɵServerRendererFactory2} from './server_renderer';
|