UNPKG

@pie-framework/mathml-to-latex

Version:

A JavaScript tool to convert mathml string to LaTeX string. This is a forked repo.

7 lines (6 loc) 170 B
export interface MathMLElement { readonly name: string; readonly value: string; readonly children: MathMLElement[]; attributes: Record<string, string>; }