Skip to content

Commit 3e29e25

Browse files
author
bietkul
committed
Updated typings
1 parent 9e19ac2 commit 3e29e25

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

index.d.ts

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -771,6 +771,16 @@ declare module "react-reactive-form" {
771771
constructor(formState: any,
772772
validatorOrOpts?: ValidatorFn|ValidatorFn[]|AbstractControlOptions|null,
773773
asyncValidator?: AsyncValidatorFn|AsyncValidatorFn[]|null);
774+
775+
/**
776+
* Emits an event every time the value of the control changes, in
777+
* the UI by onChang event.
778+
*/
779+
onValueChanges: Observable<any>;
780+
/**
781+
* Emits an event every time whenever a blur event triggers.
782+
*/
783+
onBlurChanges: Observable<any>;
774784
/**
775785
* Function needs to be called whenever a value change happens.
776786
*/

0 commit comments

Comments
 (0)