UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

18 lines (17 loc) 486 B
import * as data from '../../data'; import * as musicxml from '../../musicxml'; import { Config } from '../../config'; import { Logger } from '../../debug'; export declare class Score { private config; private log; private idProvider; private title; private partLabels; private systems; private constructor(); static create(config: Config, log: Logger, musicXML: { scorePartwise: musicxml.ScorePartwise; }): Score; parse(): data.Score; }