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

@ -29,7 +29,7 @@ import {LocationChangeListener, PlatformLocation} from './platform_location';
*
* {@example common/location/ts/hash_location_component.ts region='LocationComponent'}
*
* @stable
*
*/
@Injectable()
export class HashLocationStrategy extends LocationStrategy {

View File

@ -40,7 +40,7 @@ export interface PopStateEvent {
*
* ### Example
* {@example common/location/ts/path_location_component.ts region='LocationComponent'}
* @stable
*
*/
@Injectable()
export class Location {

View File

@ -25,7 +25,7 @@ import {LocationChangeListener} from './platform_location';
*
* See these two classes for more.
*
* @stable
*
*/
export abstract class LocationStrategy {
abstract path(includeHash?: boolean): string;
@ -59,6 +59,6 @@ export abstract class LocationStrategy {
* class AppModule {}
* ```
*
* @stable
*
*/
export const APP_BASE_HREF = new InjectionToken<string>('appBaseHref');

View File

@ -38,7 +38,7 @@ import {LocationChangeListener, PlatformLocation} from './platform_location';
*
* {@example common/location/ts/path_location_component.ts region='LocationComponent'}
*
* @stable
*
*/
@Injectable()
export class PathLocationStrategy extends LocationStrategy {

View File

@ -27,7 +27,7 @@ import {InjectionToken} from '@angular/core';
* {@link Location} / {@link LocationStrategy} and DOM apis flow through the `PlatformLocation`
* class they are all platform independent.
*
* @stable
*
*/
export abstract class PlatformLocation {
abstract getBaseHrefFromDOM(): string;