@stringsync/vexml
Version:
MusicXML to Vexflow
16 lines (15 loc) • 387 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.TrillMark = void 0;
/**
* The <trill-mark> element represents the trill symbol.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/trill-mark/
*/
class TrillMark {
element;
constructor(element) {
this.element = element;
}
}
exports.TrillMark = TrillMark;