UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

12 lines (11 loc) 281 B
/** * The `<open-string>` element represents the zero-shaped open string symbol. * * See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/open-string/ */ export class OpenString { element; constructor(element) { this.element = element; } }