UNPKG
soundfont2
Version:
latest (0.5.0)
0.5.0
0.4.0
0.3.0
0.2.1
0.2.0
0.1.0
A SoundFont2 parser for Node.js and web browsers
github.com/Mrtenz/soundfont2
Mrtenz/soundfont2
soundfont2
/
src
/
types
/
bank.ts
12 lines
(10 loc)
•
159 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import { Preset }
from
'./preset'
;
/** * Describes a MIDI bank. */
export
interface
Bank
{
/** * The presets in the bank. */
presets: Preset[]; }