fix(platform-browser-dynamic): mark platformBrowserDynamic as stable API (#12154)
Everyone building Angular apps need to use this api to bootstrap or AoT compile, so it can't be experimental.
This commit is contained in:
parent
13ecc140e8
commit
bcef5efffe
|
@ -21,7 +21,7 @@ export const RESOURCE_CACHE_PROVIDER: Provider[] =
|
|||
[{provide: ResourceLoader, useClass: CachedResourceLoader}];
|
||||
|
||||
/**
|
||||
* @experimental API related to bootstrapping are still under review.
|
||||
* @stable
|
||||
*/
|
||||
export const platformBrowserDynamic = createPlatformFactory(
|
||||
platformCoreDynamic, 'browserDynamic', INTERNAL_BROWSER_DYNAMIC_PLATFORM_PROVIDERS);
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/** @experimental */
|
||||
/** @stable */
|
||||
export declare const platformBrowserDynamic: (extraProviders?: Provider[]) => PlatformRef;
|
||||
|
||||
/** @experimental */
|
||||
|
|
Loading…
Reference in New Issue