We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3c56b2 commit 302bc47Copy full SHA for 302bc47
example/index.tsx
@@ -13,7 +13,7 @@ const page = `
13
14
const jsx = (
15
<html lang="en">
16
- <head>
+ <head hx-a=''>
17
<title>Hello World</title>
18
</head>
19
<body>
src/declaration.ts
@@ -1,3 +1,5 @@
1
+// @ts-nocheck
2
+
3
// @ts-ignore
4
const { createElement } = require('typed-html')
5
@@ -480,7 +482,8 @@ declare namespace JSX {
480
482
onunload?: string
481
483
}
484
interface HtmlTag {
- [attributes: string]: string | boolean
485
+ // @ts-ignore
486
+ [attributes?: string]: string | boolean
487
oncontextmenu?: string
488
onkeydown?: string
489
onkeypress?: string
0 commit comments