UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

20 lines (19 loc) 468 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.CursorPath = void 0; /** A collection of cursor frames for a given part index.. */ class CursorPath { partIndex; frames; constructor(partIndex, frames) { this.partIndex = partIndex; this.frames = frames; } getPartIndex() { return this.partIndex; } getFrames() { return this.frames; } } exports.CursorPath = CursorPath;