mathml-to-latex
Version:
A JavaScript tool to convert mathml string to LaTeX string
11 lines (10 loc) • 409 B
TypeScript
import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';
import { MathMLElement } from '../../../protocols/mathml-element';
export declare class MFenced implements ToLaTeXConverter {
private readonly _mathmlElement;
private readonly open;
private readonly close;
constructor(mathmlElement: MathMLElement);
convert(): string;
private _isThereRelativeOfName;
}