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
+2 -14
View File
@@ -5,15 +5,11 @@ import {Validators} from './validators';
/**
* Indicates that a Control is valid, i.e. that no errors exist in the input value.
*
* @exportedAs angular2/forms
*/
export const VALID = "VALID";
/**
* Indicates that a Control is invalid, i.e. that an error exists in the input value.
*
* @exportedAs angular2/forms
*/
export const INVALID = "INVALID";
@@ -144,8 +140,6 @@ export class AbstractControl {
* `Control` is one of the three fundamental building blocks used to define forms in Angular, along
* with
* {@link ControlGroup} and {@link ControlArray}.
*
* @exportedAs angular2/forms
*/
export class Control extends AbstractControl {
_onChange: Function;
@@ -181,8 +175,6 @@ export class Control extends AbstractControl {
* {@link Control} and {@link ControlArray}. {@link ControlArray} can also contain other controls,
* but is of variable
* length.
*
* @exportedAs angular2/forms
*/
export class ControlGroup extends AbstractControl {
controls: StringMap<string, AbstractControl>;
@@ -263,12 +255,8 @@ export class ControlGroup extends AbstractControl {
* changes as well.
*
* `ControlArray` is one of the three fundamental building blocks used to define forms in Angular,
* along with
* {@link Control} and {@link ControlGroup}. {@link ControlGroup} can also contain other controls,
* but is of fixed
* length.
*
* @exportedAs angular2/forms
* along with {@link Control} and {@link ControlGroup}. {@link ControlGroup} can also contain
* other controls, but is of fixed length.
*/
export class ControlArray extends AbstractControl {
controls: List<AbstractControl>;