UNPKG

spessasynth_core

Version:

MIDI and SoundFont2/DLS library with no compromises

18 lines 297 B
/** * * @enum {number} */ export const interpolationTypes = { linear: 0, nearestNeighbor: 1, fourthOrder: 2 }; /** * The text types for the synth display * @enum {number} */ export const synthDisplayTypes = { SoundCanvasText: 0, XGText: 1, SoundCanvasDotDisplay: 2 };