UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

26 lines (25 loc) 464 B
export class Pitch { config; log; step; octave; constructor(config, log, step, octave) { this.config = config; this.log = log; this.step = step; this.octave = octave; } getStep() { return this.step; } getOctave() { return this.octave; } parse() { return { type: 'pitch', step: this.step, octave: this.octave, }; } }