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 9450db0 commit 997045fCopy full SHA for 997045f
packages/vue-jsx-vapor/src/jsx-runtime.ts
@@ -23,8 +23,13 @@ declare global {
23
$props: {}
24
}
25
export interface IntrinsicElements extends NativeElements {
26
+ // allow arbitrary elements
27
+ // @ts-ignore suppress ts:2374 = Duplicate string index signature.
28
[name: string]: any
29
- export interface IntrinsicAttributes extends ReservedProps {}
30
+ export interface IntrinsicAttributes extends ReservedProps {
31
+ class?: unknown
32
+ style?: unknown
33
+ }
34
35
0 commit comments