UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

10 lines (9 loc) 299 B
import { CursorFrame } from './types'; /** A collection of cursor frames for a given part index.. */ export declare class CursorPath { private partIndex; private frames; constructor(partIndex: number, frames: CursorFrame[]); getPartIndex(): number; getFrames(): CursorFrame[]; }