vexflow
Version:
A JavaScript library for rendering music notation and guitar tablature.
24 lines (21 loc) • 683 B
text/typescript
// [VexFlow](https://vexflow.com) - Copyright (c) Mohit Muthanna 2010.
// MIT License
//
// vexflow.js statically bundles & preloads all of our music engraving fonts.
import { loadBravura } from './load_bravura';
import { loadCustom } from './load_custom';
import { loadGonville } from './load_gonville';
import { loadLeland } from './load_leland';
import { loadPetaluma } from './load_petaluma';
// ADD_MUSIC_FONT
// import { loadXXX } from './load_xxx';
// Populate our font "database" with all our music fonts.
export function loadAllMusicFonts(): void {
loadBravura();
loadGonville();
loadPetaluma();
loadCustom();
loadLeland();
// ADD_MUSIC_FONT
// loadXXX();
}