chore(doc-gen): remove unnecessary @public and @exportedAs tags

This commit is contained in:
Peter Bacon Darwin
2015-07-11 07:21:21 +01:00
parent 9fa7d38133
commit 2e4a2a0e5a
83 changed files with 5 additions and 299 deletions

View File

@ -50,8 +50,6 @@ const _EMPTY_LIST = CONST_EXPR([]);
*
* expect(injector.get(String)).toEqual('Hello');
* ```
*
* @exportedAs angular2/di
*/
@CONST()
export class Binding {
@ -228,8 +226,6 @@ export class Binding {
* A {@link Binding} is resolved when it has a factory function. Binding to a class, alias, or
* value, are just convenience methods, as {@link Injector} only operates on calling factory
* functions.
*
* @exportedAs angular2/di
*/
export class ResolvedBinding {
constructor(
@ -260,8 +256,6 @@ export class ResolvedBinding {
* bind(MyInterface).toClass(MyClass)
*
* ```
*
* @exportedAs angular2/di
*/
export function bind(token): BindingBuilder {
return new BindingBuilder(token);
@ -269,8 +263,6 @@ export function bind(token): BindingBuilder {
/**
* Helper class for the {@link bind} function.
*
* @exportedAs angular2/di
*/
export class BindingBuilder {
constructor(public token) {}