@stringsync/vexml
Version:
MusicXML to Vexflow
12 lines (11 loc) • 310 B
JavaScript
/**
* The `<double-tongue>` element represents the double tongue symbol (two dots arranged horizontally).
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/double-tongue/
*/
export class DoubleTongue {
element;
constructor(element) {
this.element = element;
}
}