diff --git a/src/jsx.d.ts b/src/jsx.d.ts index 2131b8fd09..4b78394af6 100644 --- a/src/jsx.d.ts +++ b/src/jsx.d.ts @@ -141,9 +141,7 @@ export namespace JSXInternal { semantics: preact.SemanticsMathMLAttributes; } - export interface IntrinsicElements - extends IntrinsicSVGElements, - IntrinsicMathMLElements { + export interface IntrinsicHTMLElements { a: preact.AccessibleAnchorHTMLAttributes; abbr: preact.HTMLAttributes; address: preact.HTMLAttributes; @@ -262,4 +260,9 @@ export namespace JSXInternal { video: preact.VideoHTMLAttributes; wbr: preact.WbrHTMLAttributes; } + + export interface IntrinsicElements + extends IntrinsicSVGElements, + IntrinsicMathMLElements, + IntrinsicHTMLElements {} }