mathml-to-latex
Version:
A JavaScript tool to convert mathml string to LaTeX string
13 lines (12 loc) • 343 B
TypeScript
export interface MathMLElement {
readonly name: string;
readonly value: string;
readonly children: MathMLElement[];
attributes: Record<string, string>;
}
export declare class VoidMathMLElement implements MathMLElement {
readonly name = "void";
readonly value = "";
readonly children: never[];
attributes: {};
}