docs(common): improve deprecation notices to be parsed by tslint

Closes: #24237
This commit is contained in:
Alan Agius
2018-06-01 22:09:01 +02:00
committed by Victor Berchet
parent 0e1919c2db
commit 10213d0ca0
15 changed files with 32 additions and 32 deletions

View File

@ -39,7 +39,7 @@ import {ResponseOptionsArgs} from './interfaces';
* console.log('res.json():', res.json()); // Object {name: "Jeff"}
* ```
*
* @deprecated use @angular/common/http instead
* @deprecated see https://angular.io/guide/http
*/
export class ResponseOptions {
// TODO: FormData | Blob
@ -156,7 +156,7 @@ export class ResponseOptions {
* console.log('res.text():', res.text()); // Angular;
* ```
*
* @deprecated use @angular/common/http instead
* @deprecated see https://angular.io/guide/http
*/
@Injectable()
export class BaseResponseOptions extends ResponseOptions {