UNPKG

opensheetmusicdisplay

Version:

An open source JavaScript engine for displaying MusicXML based on VexFlow.

10 lines (9 loc) 299 B
import { IXmlElement } from "./Xml"; /** * Some helper methods to handle MXL files. */ export declare class MXLHelper { /** Returns the documentElement of MXL data. */ static MXLtoIXmlElement(data: string): Promise<IXmlElement>; static MXLtoXMLstring(data: string): Promise<string>; }