@stringsync/vexml
Version:
MusicXML to Vexflow
19 lines (18 loc) • 508 B
JavaScript
import { Enum } from '../util';
export const STEM_DIRECTIONS = new Enum(['auto', 'up', 'down', 'none']);
export const CLEF_SIGNS = new Enum([
'treble',
'french',
'subbass',
'baritone-f',
'bass',
'baritone-c',
'tenor',
'mezzo-soprano',
'soprano',
'alto',
'percussion',
'tab',
]);
export const ACCIDENTAL_CODES = new Enum(['#', '##', 'b', 'bb', 'n', 'd', '_', 'db', '+', '++']);
export const INPUT_TYPES = new Enum(['auto', 'mouse', 'touch', 'hybrid', 'none']);