docs(upgrade): mark upgrade apis as stable

This commit is contained in:
Igor Minar 2016-08-23 21:38:53 -07:00 committed by Victor Berchet
parent 501b83441d
commit f38a700e35
2 changed files with 4 additions and 4 deletions

View File

@ -95,7 +95,7 @@ var upgradeCount: number = 0;
*
* ```
*
* @experimental
* @stable
*/
export class UpgradeAdapter {
/* @internal */
@ -566,7 +566,7 @@ function ng1ComponentDirective(info: ComponentInfo, idPrefix: string): Function
/**
* Use `UpgradeAdapterRef` to control a hybrid AngularJS v1 / Angular v2 application.
*
* @experimental
* @stable
*/
export class UpgradeAdapterRef {
/* @internal */

View File

@ -1,4 +1,4 @@
/** @experimental */
/** @stable */
export declare class UpgradeAdapter {
constructor(ng2AppModule: Type<any>);
bootstrap(element: Element, modules?: any[], config?: angular.IAngularBootstrapConfig): UpgradeAdapterRef;
@ -10,7 +10,7 @@ export declare class UpgradeAdapter {
}): void;
}
/** @experimental */
/** @stable */
export declare class UpgradeAdapterRef {
ng1Injector: angular.IInjectorService;
ng1RootScope: angular.IRootScopeService;