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