We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e19ac2 commit 3e29e25Copy full SHA for 3e29e25
index.d.ts
@@ -771,6 +771,16 @@ declare module "react-reactive-form" {
771
constructor(formState: any,
772
validatorOrOpts?: ValidatorFn|ValidatorFn[]|AbstractControlOptions|null,
773
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>;
784
/**
785
* Function needs to be called whenever a value change happens.
786
*/
0 commit comments