UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

12 lines (11 loc) 312 B
/** * The `<delayed-turn>` element indicates a normal turn that is delayed until the end of the current note. * * See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/delayed-turn/ */ export class DelayedTurn { element; constructor(element) { this.element = element; } }