@@ -463,6 +463,8 @@ export interface DOMAttributes<T extends EventTarget> {
463
463
'on:fullscreenerror' ?: EventHandler < Event , T > | undefined | null ;
464
464
onfullscreenerror ?: EventHandler < Event , T > | undefined | null ;
465
465
onfullscreenerrorcapture ?: EventHandler < Event , T > | undefined | null ;
466
+
467
+ xmlns ?: string | undefined | null ;
466
468
}
467
469
468
470
// All the WAI-ARIA 1.1 attributes from https://www.w3.org/TR/wai-aria-1.1/
@@ -773,7 +775,6 @@ export interface HTMLAttributes<T extends EventTarget> extends AriaAttributes, D
773
775
inert ?: boolean | undefined | null ;
774
776
popover ?: 'auto' | 'manual' | '' | undefined | null ;
775
777
writingsuggestions ?: Booleanish | undefined | null ;
776
- xmlns ?: string | undefined | null ;
777
778
778
779
// Unknown
779
780
radiogroup ?: string | undefined | null ; // <command>, <menuitem>
@@ -1810,7 +1811,6 @@ export interface SVGAttributes<T extends EventTarget> extends AriaAttributes, DO
1810
1811
'xlink:type' ?: string | undefined | null ;
1811
1812
'xml:base' ?: string | undefined | null ;
1812
1813
'xml:lang' ?: string | undefined | null ;
1813
- xmlns ?: string | undefined | null ;
1814
1814
'xmlns:xlink' ?: string | undefined | null ;
1815
1815
'xml:space' ?: string | undefined | null ;
1816
1816
y1 ?: number | string | undefined | null ;
0 commit comments