@pie-framework/mathml-to-latex
Version:
A JavaScript tool to convert mathml string to LaTeX string. This is a forked repo.
10 lines (9 loc) • 375 B
TypeScript
import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';
import { MathMLElement } from '../../../protocols/mathml-element';
export declare class MFrac implements ToLaTeXConverter {
private readonly _mathmlElement;
constructor(mathElement: MathMLElement);
convert(): string;
private _wrapIfMoreThanOneChar;
private _isBevelled;
}