UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

16 lines (15 loc) 378 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Turn = void 0; /** * The `<turn>` element is the normal turn shape which goes up then down. * * See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/turn/ */ class Turn { element; constructor(element) { this.element = element; } } exports.Turn = Turn;