From b5e350b18c4548594013acb8b8046ec91e39f73f Mon Sep 17 00:00:00 2001 From: vsavkin Date: Fri, 24 Apr 2015 13:23:17 -0700 Subject: [PATCH] cleanup(forms): do not export AbstractControl Closes #1299 --- modules/angular2/src/forms/model.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/angular2/src/forms/model.js b/modules/angular2/src/forms/model.js index 3e15559194..49b107480d 100644 --- a/modules/angular2/src/forms/model.js +++ b/modules/angular2/src/forms/model.js @@ -32,7 +32,7 @@ export const INVALID = "INVALID"; /** * Omitting from external API doc as this is really an abstract internal concept. */ -export class AbstractControl { +class AbstractControl { _value:any; _status:string; _errors:StringMap;