UNPKG

@pie-framework/mathml-to-latex

Version:

A JavaScript tool to convert mathml string to LaTeX string. This is a forked repo.

8 lines (7 loc) 340 B
import { MathMLElement } from '../../../data/protocols/mathml-element'; import { ToLaTeXConverter } from '../../../domain/usecases/to-latex-converter'; export declare class MathMLElementToLatexConverterAdapter { private readonly _mathMLElement; constructor(mathMLElement: MathMLElement); toLatexConverter(): ToLaTeXConverter; }