mirror of
https://github.com/angular/angular
synced 2026-05-24 09:28:37 +00:00
25 lines
703 B
TypeScript
25 lines
703 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
|
|
*/
|
|
|
|
import {createPlatformFactory} from '@angular/core';
|
|
|
|
import {platformCoreDynamic} from './platform_core_dynamic';
|
|
import {INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS} from './platform_providers';
|
|
|
|
export * from './private_export';
|
|
export {VERSION} from './version';
|
|
export {JitCompilerFactory} from './compiler_factory';
|
|
|
|
/**
|
|
* @publicApi
|
|
*/
|
|
export const platformBrowserDynamic = createPlatformFactory(
|
|
platformCoreDynamic,
|
|
'browserDynamic',
|
|
INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS,
|
|
);
|