@stringsync/vexml
Version:
MusicXML to Vexflow
16 lines (15 loc) • 355 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Heel = void 0;
/**
* The `<heel>` element is used with organ pedals.
*
* See https://www.w3.org/2021/06/musicxml40/musicxml-reference/elements/heel/
*/
class Heel {
element;
constructor(element) {
this.element = element;
}
}
exports.Heel = Heel;