@stringsync/vexml
Version:
MusicXML to Vexflow
21 lines (20 loc) • 485 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PartSignature = void 0;
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(),
};
}
}
exports.PartSignature = PartSignature;