UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

17 lines (16 loc) 343 B
export class FragmentSignature { config; log; metronome; constructor(config, log, metronome) { this.config = config; this.log = log; this.metronome = metronome; } parse() { return { type: 'fragmentsignature', metronome: this.metronome.parse(), }; } }