UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

12 lines (11 loc) 264 B
/** * 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/ */ export class Turn { element; constructor(element) { this.element = element; } }