UNPKG

soundfont2

Version:

A SoundFont2 parser for Node.js and web browsers

12 lines (10 loc) 159 B
import { Preset } from './preset'; /** * Describes a MIDI bank. */ export interface Bank { /** * The presets in the bank. */ presets: Preset[]; }