From a476a95aaf735093578d4e34bd00cef1a766b787 Mon Sep 17 00:00:00 2001 From: Paul van Brenk Date: Wed, 17 Aug 2016 14:13:06 -0700 Subject: [PATCH] Allow defaultValue to be number, since that's valid for some properties --- react-mdl/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/react-mdl/index.d.ts b/react-mdl/index.d.ts index b11c920dab..77a8045550 100644 --- a/react-mdl/index.d.ts +++ b/react-mdl/index.d.ts @@ -28,7 +28,7 @@ declare namespace __ReactMDL { interface MDLHTMLAttributes { // React-specific Attributes defaultChecked?: boolean; - defaultValue?: string | string[]; + defaultValue?: number | string | string[]; // Standard HTML Attributes accept?: string;