UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

13 lines (12 loc) 376 B
import { NamedElement } from '../util'; /** * Coordinates multiple voices in a single part. * * See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/forward/. */ export declare class Forward { private element; constructor(element: NamedElement<'forward'>); /** Returns the duration of the backup. Defaults to 4 */ getDuration(): number; }