mathml-to-latex
Version:
A JavaScript tool to convert mathml string to LaTeX string
10 lines (9 loc) • 385 B
TypeScript
import { ToLaTeXConverter } from '../../../../domain/usecases/to-latex-converter';
import { MathMLElement } from '../../../protocols/mathml-element';
export declare class MRow implements ToLaTeXConverter {
private readonly _mathmlElement;
constructor(mathElement: MathMLElement);
convert(): string;
private _isLinearSystemPattern;
private _convertAsLinearSystem;
}