Skip to content

Commit

Permalink
Add HTMLMFencedElement interface
Browse files Browse the repository at this point in the history
  • Loading branch information
fekete965 authored and marvinhagemeister committed Dec 8, 2023
1 parent ae8d7ef commit 6eb5309
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/jsx.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2554,6 +2554,12 @@ export namespace JSXInternal {

export interface HTMLMErrorElement extends MathMLElement {}

export interface HTMLMFencedElement extends MathMLElement {
close?: string | undefined | SignalLike<string | undefined>;
open?: string | undefined | SignalLike<string | undefined>;
separators?: string | undefined | SignalLike<string | undefined>;
}

export interface HTMLMFracElement extends MathMLElement {
/** @deprecated See https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfrac#denomalign */
denomalign?:
Expand Down Expand Up @@ -3018,6 +3024,8 @@ export namespace JSXInternal {
/** This feature is non-standard. See https://developer.mozilla.org/en-US/docs/Web/MathML/Element/menclose */
menclose: MathMLAttributes<HTMLMEncloseElement>;
merror: MathMLAttributes<HTMLMErrorElement>;
/** @deprecated See https://developer.mozilla.org/en-US/docs/Web/MathML/Element/mfenced */
mfenced: HTMLAttributes<HTMLMFencedElement>;
mfrac: MathMLAttributes<HTMLMFracElement>;
mi: MathMLAttributes<HTMLMiElement>;
mmultiscripts: MathMLAttributes<HTMLMmultiScriptsElement>;
Expand Down

0 comments on commit 6eb5309

Please sign in to comment.