feat(forms): make 'parent' a public property of 'AbstractControl' (#11855)

This commit is contained in:
Dzmitry Shylovich
2016-10-19 19:55:50 +03:00
committed by Alex Rickabaugh
parent b9fc090143
commit 445e5922ec
2 changed files with 19 additions and 12 deletions

View File

@ -8,6 +8,7 @@ export declare abstract class AbstractControl {
[key: string]: any;
};
invalid: boolean;
parent: FormGroup | FormArray;
pending: boolean;
pristine: boolean;
root: AbstractControl;