UNPKG

@tempots/dom

Version:

Fully-typed frontend framework alternative to React and Angular

56 lines (55 loc) 1.19 kB
/** * Represents the attributes used in MathML elements. * * @public */ export type MathMLAttributes = { accent: string; accentunder: string; align: string; bevelled: string; close: string; columnalign: string; columnlines: string; columnspacing: string; columnspan: string; columnwidth: string; crossout: string; depth: string; dir: string; display: string; displaystyle: string; edge: string; equalcolumns: string; equalrows: string; fence: string; fontstyle: string; fontweight: string; frame: string; height: string; linethickness: string; lspace: string; mathbackground: string; mathcolor: string; mathsize: string; mathvariant: string; maxsize: string; minsize: string; movablelimits: string; notation: string; numalign: string; open: string; rowalign: string; rowlines: string; rowspacing: string; rowspan: string; rspace: string; selection: string; separator: string; stretchy: string; subscriptshift: string; superscriptshift: string; symmetric: string; voffset: string; width: string; };