UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

22 lines (21 loc) 736 B
import { NamedElement } from '../util'; /** * The <measure-style> element indicates a special way to print partial to multiple measures within a part. * * See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/measure-style/ */ export declare class MeasureStyle { private element; constructor(element: NamedElement<'measure-style'>); /** * Returns the stave number this measure style belongs to. Defaults to null, implying that it should apply to all * staves. */ getStaveNumber(): number | null; /** * Returns how many measures the rest spans. * * Defaults to 0. A value of 0 indicates that there are no multiple rests. */ getMultipleRestCount(): number; }