From fadae055314dab4069dfbefa80023d48c0ca1acf Mon Sep 17 00:00:00 2001 From: afholderman Date: Mon, 9 Oct 2017 18:22:27 -0500 Subject: [PATCH] FIx Issue #20204 (#20205) Missing valid property in interface --- types/reactstrap/lib/Input.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/reactstrap/lib/Input.d.ts b/types/reactstrap/lib/Input.d.ts index ce928fb35c..541016ca02 100644 --- a/types/reactstrap/lib/Input.d.ts +++ b/types/reactstrap/lib/Input.d.ts @@ -37,6 +37,7 @@ interface InputProps extends Intermediate { type?: InputType; size?: string; state?: string; + valid?: boolean; tag?: React.ReactType; getRef?: string | ((instance: HTMLInputElement) => any); static?: boolean;