UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

16 lines (15 loc) 447 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.DelayedTurn = void 0; /** * 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/ */ class DelayedTurn { element; constructor(element) { this.element = element; } } exports.DelayedTurn = DelayedTurn;