Add `xmlns` attribute to HTMLAttributes type

The `xmlns` attribute is not only allowed on SVG elements, but on all HTML elements.
pull/16080/head
Christoph Sanz 4 months ago committed by GitHub
parent 2342c8719a
commit 050ff23b55
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -773,6 +773,7 @@ export interface HTMLAttributes<T extends EventTarget> extends AriaAttributes, D
inert?: boolean | undefined | null;
popover?: 'auto' | 'manual' | '' | undefined | null;
writingsuggestions?: Booleanish | undefined | null;
xmlns?: string | undefined | null;
// Unknown
radiogroup?: string | undefined | null; // <command>, <menuitem>

Loading…
Cancel
Save