UNPKG

opensheetmusicdisplay

Version:

An open source JavaScript engine for displaying MusicXML based on VexFlow.

7 lines (6 loc) 285 B
import { GraphicalNote } from "../Graphical/GraphicalNote"; export interface IStafflineNoteCalculator { trackNote(graphicalNote: GraphicalNote): void; positionNote(graphicalNote: GraphicalNote): GraphicalNote; getStafflineUniquePositionCount(staffIndex: number): number; }