File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
projects/ngx-sub-form/src/lib Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ export interface TypedFormGroup<TValue> extends FormGroup {
5050 controls : ControlsType < TValue > ;
5151 setValue ( value : TValue , options ?: Parameters < FormGroup [ 'setValue' ] > [ 1 ] ) : void ;
5252 patchValue ( value : Partial < TValue > , options ?: Parameters < FormGroup [ 'patchValue' ] > [ 1 ] ) : void ;
53+ getRawValue ( ) : TValue ;
5354}
5455
5556export interface TypedFormArray < TValue extends any [ ] > extends FormArray {
@@ -58,6 +59,7 @@ export interface TypedFormArray<TValue extends any[]> extends FormArray {
5859 controls : TypedAbstractControl < TValue > [ ] ;
5960 setValue ( value : TValue , options ?: Parameters < FormArray [ 'setValue' ] > [ 1 ] ) : void ;
6061 patchValue ( value : TValue , options ?: Parameters < FormArray [ 'patchValue' ] > [ 1 ] ) : void ;
62+ getRawValue ( ) : TValue ;
6163}
6264
6365export interface TypedFormControl < TValue > extends FormGroup {
You can’t perform that action at this time.
0 commit comments