UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

11 lines (10 loc) 299 B
/** Represents the manifest for a compressed MusicXML file. */ export declare class MXL { private blob; constructor(blob: Blob); /** * Returns the MusicXML string. * @throws {Error} when the blob cannot be handled like a MXL file. */ getMusicXML(): Promise<string>; }