Skip to content

Commit

Permalink
Merge pull request #3191 from craftedsystems/fix/type-definition
Browse files Browse the repository at this point in the history
Fix type definitions
  • Loading branch information
rschristian authored Jun 15, 2021
2 parents 40f7c65 + 9fc9de2 commit 1f89e50
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/jsx.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -733,6 +733,7 @@ export namespace JSXInternal {
slot?: string;
span?: number;
spellcheck?: boolean;
spellCheck?: boolean;
src?: string;
srcset?: string;
srcDoc?: string;
Expand All @@ -753,6 +754,10 @@ export namespace JSXInternal {
wmode?: string;
wrap?: string;

// Non-standard Attributes
autocapitalize?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';
autoCapitalize?: 'off' | 'none' | 'on' | 'sentences' | 'words' | 'characters';

// RDFa Attributes
about?: string;
datatype?: string;
Expand Down

0 comments on commit 1f89e50

Please sign in to comment.