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