fix(forms): getRawValue returns any instead of Object (#12599)

This commit is contained in:
Dzmitry Shylovich
2016-11-09 02:44:36 +03:00
committed by vikerman
parent 778e6ad3b4
commit 09092ac3c2
2 changed files with 2 additions and 2 deletions

View File

@ -269,7 +269,7 @@ export declare class FormGroup extends AbstractControl {
}, validator?: ValidatorFn, asyncValidator?: AsyncValidatorFn);
addControl(name: string, control: AbstractControl): void;
contains(controlName: string): boolean;
getRawValue(): Object;
getRawValue(): any;
patchValue(value: {
[key: string]: any;
}, {onlySelf, emitEvent}?: {