Allow defaultValue to be number, since that's valid for some properties

This commit is contained in:
Paul van Brenk
2016-08-17 14:13:06 -07:00
parent 91c08e5b35
commit a476a95aaf

View File

@@ -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;