UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

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