UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

15 lines (14 loc) 375 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Words = void 0; class Words { element; constructor(element) { this.element = element; } /** Returns the content of the words. Defaults to empty string. */ getContent() { return this.element.content().withDefault('').str(); } } exports.Words = Words;