From e95c47a128b1f5c75206e8f1db0e2056b3b5588f Mon Sep 17 00:00:00 2001 From: Evgeny Vyazovtsev Date: Tue, 26 Nov 2019 12:00:45 +0300 Subject: [PATCH] Fix type definition --- typings/number_format.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/typings/number_format.d.ts b/typings/number_format.d.ts index bf532352..ef24870a 100755 --- a/typings/number_format.d.ts +++ b/typings/number_format.d.ts @@ -1,7 +1,7 @@ /// //exclude types from the InputHTMLAttributes -declare const {defaultValue, value, ...inputAttributes}: React.InputHTMLAttributes; +const {defaultValue, value, ...inputAttributes}: React.InputHTMLAttributes; type InputAttributes = typeof inputAttributes;