UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

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