File tree 1 file changed +3
-3
lines changed
packages/runtime-dom/types
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ interface AriaAttributes {
245
245
'aria-valuetext' ?: string
246
246
}
247
247
248
- export interface HTMLAttributes extends AriaAttributes {
248
+ export interface HTMLAttributes extends AriaAttributes , EventHandlers < Events > {
249
249
innerHTML ?: string
250
250
251
251
class ?: any
@@ -734,7 +734,7 @@ export interface WebViewHTMLAttributes extends HTMLAttributes {
734
734
webpreferences ?: string
735
735
}
736
736
737
- export interface SVGAttributes extends AriaAttributes {
737
+ export interface SVGAttributes extends AriaAttributes , EventHandlers < Events > {
738
738
innerHTML ?: string
739
739
740
740
/**
@@ -1322,7 +1322,7 @@ type ReservedProps = {
1322
1322
| ( ( ref : Element | RuntimeCore . ComponentInternalInstance | null ) => void )
1323
1323
}
1324
1324
1325
- type ElementAttrs < T > = T & EventHandlers < Events > & ReservedProps
1325
+ type ElementAttrs < T > = T & ReservedProps
1326
1326
1327
1327
type NativeElements = {
1328
1328
[ K in StringKeyOf < IntrinsicElementAttributes > ] : ElementAttrs <
You can’t perform that action at this time.
0 commit comments