UNPKG

soundfont2

Version:

A SoundFont2 parser for Node.js and web browsers

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