UNPKG

vexflow-musicxml

Version:

MusicXml Parser for vexflow

12 lines (10 loc) 332 B
import { XmlObject } from './XmlObject'; import { Encoding } from './Encoding.js'; export class Identification extends XmlObject { constructor(node) { super(node); this.Encoding = new Encoding(this.getChild('encoding')); this.Creator = this.getText('creator'); this.CreatorType = this.getAttribute('type'); } }