UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

16 lines (15 loc) 336 B
/** A collection of cursor frames for a given part index.. */ export class CursorPath { partIndex; frames; constructor(partIndex, frames) { this.partIndex = partIndex; this.frames = frames; } getPartIndex() { return this.partIndex; } getFrames() { return this.frames; } }