Skip to content

Commit 6c7d9a9

Browse files
committedMar 28, 2023
Improve JSX intrinsic element types
Uses `JSX.IntrinsicElements['span']` as base JSX intrinsic element type if it exists (e.g. `@types/react` installed), and a generic record otherwise. Explicitly add "class" for React JSX, because "className" is not supported for custom elements.
1 parent 6b37dbd commit 6c7d9a9

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed
 

‎src/index.ts

+5-4
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
11
import { ScrollShadowElement } from './ScrollShadowElement.js'
22

3+
type IntrinsicBase = JSX.IntrinsicElements extends { span: infer SpanElement }
4+
? SpanElement
5+
: Record<string, unknown>
6+
37
declare global {
48
interface HTMLElementTagNameMap {
59
'scroll-shadow': ScrollShadowElement
610
}
711

812
namespace JSX {
913
interface IntrinsicElements {
10-
'scroll-shadow': {
11-
// eslint-disable-next-line @typescript-eslint/no-explicit-any
12-
[prop: string]: any
13-
}
14+
'scroll-shadow': IntrinsicBase & { class?: string }
1415
}
1516
}
1617
}

0 commit comments

Comments
 (0)
Please sign in to comment.