diff --git a/types/react/index.d.ts b/types/react/index.d.ts index b74fe7a1a0..e0a047c593 100644 --- a/types/react/index.d.ts +++ b/types/react/index.d.ts @@ -12,7 +12,6 @@ // Tanguy Krotoff // Dovydas Navickas // Stéphane Goetz -// Mike Deverell // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped // TypeScript Version: 2.3 @@ -2392,7 +2391,7 @@ declare namespace React { allowTransparency?: boolean; alt?: string; async?: boolean; - autocomplete?: string; + autoComplete?: string; autoFocus?: boolean; autoPlay?: boolean; capture?: boolean; @@ -2577,7 +2576,7 @@ declare namespace React { interface FormHTMLAttributes extends HTMLAttributes { acceptCharset?: string; action?: string; - autocomplete?: string; + autoComplete?: string; encType?: string; method?: string; name?: string; @@ -2623,7 +2622,7 @@ declare namespace React { interface InputHTMLAttributes extends HTMLAttributes { accept?: string; alt?: string; - autocomplete?: string; + autoComplete?: string; autoFocus?: boolean; capture?: boolean; // https://www.w3.org/TR/html-media-capture/#the-capture-attribute checked?: boolean; @@ -2816,7 +2815,7 @@ declare namespace React { } interface TextareaHTMLAttributes extends HTMLAttributes { - autocomplete?: string; + autoComplete?: string; autoFocus?: boolean; cols?: number; dirName?: string;