docs: remove all deprecated @stable jsdoc tags (#23210)

These are no longer needed as stable docs are computed as those that
do not have `@experimental` or `@deprecated` tags.

PR Close #23210
This commit is contained in:
Pete Bacon Darwin
2018-04-05 22:31:44 +01:00
committed by Igor Minar
parent ee145790d7
commit 4b96a58c5a
155 changed files with 363 additions and 643 deletions

View File

@ -41,7 +41,7 @@ export const ALLOW_MULTIPLE_PLATFORMS = new InjectionToken<boolean>('AllowMultip
* does not result in additional changes to any bindings (also known as
* unidirectional data flow).
*
* @stable
*
*/
export function enableProdMode(): void {
if (_runModeLocked) {
@ -160,7 +160,7 @@ export function getPlatform(): PlatformRef|null {
/**
* Provides additional options to the bootstraping process.
*
* @stable
*
*/
export interface BootstrapOptions {
/**
@ -181,7 +181,7 @@ export interface BootstrapOptions {
* A page's platform is initialized implicitly when a platform is created via a platform factory
* (e.g. {@link platformBrowser}), or explicitly by calling the {@link createPlatform} function.
*
* @stable
*
*/
@Injectable()
export class PlatformRef {
@ -262,7 +262,7 @@ export class PlatformRef {
*
* let moduleRef = platformBrowser().bootstrapModule(MyModule);
* ```
* @stable
*
*/
bootstrapModule<M>(
moduleType: Type<M>, compilerOptions: (CompilerOptions&BootstrapOptions)|
@ -359,7 +359,7 @@ function optionsReducer<T extends Object>(dst: any, objs: T | T[]): T {
/**
* A reference to an Angular application running on a page.
*
* @stable
*
*/
@Injectable()
export class ApplicationRef {