UNPKG

@stringsync/vexml

Version:

MusicXML to Vexflow

22 lines (21 loc) 700 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.INPUT_TYPES = exports.ACCIDENTAL_CODES = exports.CLEF_SIGNS = exports.STEM_DIRECTIONS = void 0; const util_1 = require("../util"); exports.STEM_DIRECTIONS = new util_1.Enum(['auto', 'up', 'down', 'none']); exports.CLEF_SIGNS = new util_1.Enum([ 'treble', 'french', 'subbass', 'baritone-f', 'bass', 'baritone-c', 'tenor', 'mezzo-soprano', 'soprano', 'alto', 'percussion', 'tab', ]); exports.ACCIDENTAL_CODES = new util_1.Enum(['#', '##', 'b', 'bb', 'n', 'd', '_', 'db', '+', '++']); exports.INPUT_TYPES = new util_1.Enum(['auto', 'mouse', 'touch', 'hybrid', 'none']);