docs: add api stability indicators for @angular/common

This commit is contained in:
Igor Minar
2016-05-27 11:24:05 -07:00
parent 1c929031a2
commit 7bc2d9a93a
48 changed files with 128 additions and 24 deletions

View File

@ -158,7 +158,7 @@ export class InjectSetupWrapper {
};
}
/** @Deprecated {use async(withProviders().inject())} */
/** @deprecated {use async(withProviders().inject())} */
injectAsync(tokens: any[], fn: Function): Function {
return () => {
this._addProviders();
@ -172,7 +172,7 @@ export function withProviders(providers: () => any) {
}
/**
* @Deprecated {use async(inject())}
* @deprecated {use async(inject())}
*
* Allows injecting dependencies in `beforeEach()` and `it()`. The test must return
* a promise which will resolve when all asynchronous activity is complete.