@qtikit/mathml-to-latex
Version:
A JavaScript tool to convert mathml string to LaTeX string
9 lines (8 loc) • 345 B
TypeScript
import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';
import { MathMLElement } from '../../../protocols/mathml-element';
export declare class MSpace implements ToLaTeXConverter {
private readonly _mathmlElement;
constructor(mathElement: MathMLElement);
convert(): string;
private get _linebreak();
}