From c2cd577e36c67913d8dec1774962b16c476c9ad1 Mon Sep 17 00:00:00 2001 From: Luka Zakrajsek Date: Mon, 26 Jun 2017 17:03:40 +0200 Subject: [PATCH] Add StrictFormProps comment --- types/redux-form/lib/reduxForm.d.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/types/redux-form/lib/reduxForm.d.ts b/types/redux-form/lib/reduxForm.d.ts index c961668cd2..f1eac8d928 100644 --- a/types/redux-form/lib/reduxForm.d.ts +++ b/types/redux-form/lib/reduxForm.d.ts @@ -337,6 +337,11 @@ export interface FormComponent extends Compone wrappedInstance: ReactElement

> } +/** + * These are the props that will be passed to your form component. + * Your form component's props can extend this interface if you want + * to use strict checks. + */ export interface StrictFormProps { /** * true if any of the fields have been marked as touched, false otherwise.