UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

17 lines (16 loc) 344 B
export class PartSignature { config; log; staveCount; constructor(config, log, staveCount) { this.config = config; this.log = log; this.staveCount = staveCount; } parse() { return { type: 'partsignature', staveCount: this.staveCount.getValue(), }; } }