UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

16 lines (15 loc) 505 B
import { BeamValue } from './enums'; import { NamedElement } from '../util'; /** * Beam is a note connector that indicates a rhythmic relationship amongst a group of notes. * * https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/beam/ */ export declare class Beam { private element; constructor(element: NamedElement<'beam'>); /** Returns the beam level of the beam. */ getNumber(): number; /** Returns the beam value of the beam. */ getBeamValue(): BeamValue; }